1#  $Id: Makefile,v 1.3 2013/02/25 10:54:25 mwesdorp Exp $
2#
3#  Makefile for sqsh on Cygwin
4#
5
6#  Fix the SYBASE_OCOS entry below, copy "config.h" to the
7#  src directory, then cd to the src directory and run
8#       make -f ../cygwin/Makefile
9#  and everything **should** work.
10
11
12#  The following list of sqshrc files will be executed by sqsh upon
13#  startup.  This allows for system-wide defaults to be set in a
14#  common directory. If you don't want a global sqshrc just comment
15#  out SQSHRC_GLOBAL, below.
16
17SQSHRC_GLOBAL = /usr/local/etc/sqshrc
18SQSHRC_PATH   = "$(SQSHRC_GLOBAL):$${HOME}/.sqshrc"
19
20#  The following variables are configurable by the user.  Typically
21#  these include things that GNU autoconf has a little trouble
22#  figuring out for itself.
23
24SYBASE_OCOS   = c:/sybase/OCS-12_5
25SYBASE_INCDIR = -I$(SYBASE_OCOS)/include
26#SYBASE_LIBDIR = -L$(SYBASE_OCOS)/lib
27
28#
29#  The following set of CT-LIB libraries were determined automatically
30#  by 'configure'.  For most systems configure looks up the required
31#  libraries by looking at the name of the OS (although this doesn't
32#  mean it got them right), however if the line below ends with the
33#  word "Guess", then 'configure' didn't have an entry for your operating
34#  system and it took a best guess to figure out which libraries you
35#  need. In either case, there may be problems, so look this line over
36#  and if it doesn't work, compare it to the libraries located in
37#  $SYBASE/samples/ctlibrary.
38#
39#  The listings below show suggested libraries for Operating Systems
40#  that frequently fail to be recognized by 'configure':
41#
42#  SCO:   -lblk -lct -lcs -lcomn -ltcl -ltli -lnsl_s -lintl -m -lsocket
43#  Dynix: -lblk -lct -lcs -lcomn -ltcl -ltli -lnsl -lintl -lm -lseq
44#
45#SYBASE_LIBS   = -L$(SYBASE)/OCS-12_5/dll -lblk -lcs -lct
46#SYBASE_LIBS = libblk.lib libcs.lib libct.lib
47SYBASE_LIBS = ../cygwin/libblk.a ../cygwin/libcs.a ../cygwin/libct.a
48
49#
50#  If you have the GNU readline library available, uncomment the
51#  following definitions and make sure the lib directory and
52#  include directories are correct.
53#
54DEF_READLINE    = -DUSE_READLINE -DOLD_READLINE
55READLINE_LIBDIR = # -L/lib
56READLINE_INCDIR = # -I/usr/include
57
58#
59#  On most systems, -lreadline and -lcurses is enough to link with
60#  the readline library. However on a few systems you may need to
61#  link with termcap rather than curses, and on other systems (such
62#  as certain Solaris installations), you may need to link in -lucb
63#  to get around some BSD specifics dealing with the termcap library.
64#
65READLINE_LIBS   = -lreadline -ltermcap
66
67#
68#  Motif Support - The `configure' motif support logic for sqsh
69#  isn't exactly perfected yet. If --with-motif was run, the
70#  following what `configure' guessed at for the location
71#  for your Motif includes and libs.  Note that if MOTIF_INCDIR
72#  and MOTIF_LIBDIR are commented out, then the X_INCDIR and
73#  X_LIBDIR will be used, below.
74#
75#  Note that on some systems -lXpm may need to be added to
76#  MOTIF_LIBS.
77#
78DEF_MOTIF    = # -DUSE_MOTIF
79MOTIF_INCDIR =
80MOTIF_LIBDIR =
81MOTIF_LIBS   =
82
83#
84#  X Windows Support
85#
86#  The following variables configure whether or not X windows
87#  support is compiled into sqsh (this allows a result set to
88#  be displayed in a separate window).  If '--with-x' was sup-
89#  plied to 'configure' then most of the variables should be
90#  filled in for you (read INSTALL).  If '--with-x' was not
91#  supplied or '--without-x' was supplied then The following
92#  lines should be commented out.
93#
94DEF_X11      = # -DUSE_X11
95X_INCDIR     = # -I/usr/X11R6/include
96X_LIBDIR     = # -L/usr/X11R6/lib
97X_LIBS       =  $(MOTIF_LIBS) # -lXaw -lXt -lXext -lXmu -lX11
98
99#
100#  Undefine the following line to turn off bcp support in sqsh. This
101#  feature allows a result set to be redirected (bcp'ed) to another
102#  server.  Since this is a new feature, if you get compile errors on
103#  cmd_bcp.c, mail me a copy of the error message(s) (gray@voicenet.com)
104#  and uncomment this line.
105#
106#DEF_NOBCP       = -DNO_BCP
107
108#
109#  As of sqsh-1.4, the $password value will never expand to a clear-text
110#  copy of the users password.  If you wish to keep the old behavior
111#  (which did show the clear-text password), uncomment the following
112#  define.  Note that this applies to the new $lock password as well.
113#
114#DEF_INSECURE   = -DINSECURE
115
116#
117#  The following define turns on a work-around for a rather pernicious
118#  bug in CT-Lib having to do with the way that async i/o signals are
119#  delivered.  If, while running sqsh, pipes tend to lose data or don't
120#  display anything at all, like:
121#
122#        1> sp_who
123#        2> go | more
124#        1>
125#
126#  you probably have the bug.  First, PLEASE e-mail me (gray@voicenet.com)
127#  and I'll give you a description of what is going on so you can call
128#  tech support: I am trying to get them to fix the problem, but they
129#  are moving at a snails pace.  Then, when you have done that, un-
130#  comment the following line, which will attempt to install a work-
131#  around for the problem.
132#
133#  Please, do not uncomment this line unless you have reproduced the
134#  behavior described above.
135#
136#DEF_BUGFIX   = -DCTLIB_SIGPOLL_BUG
137
138#
139#  Uncommenting the following line turns on debugging support. Turning
140#  this feature on will increase the size of sqsh by about 12K, and
141#  will probably slow it down nominally. When enabled, various debugging
142#  messages may be turned on and off using the -l flag or the $debug
143#  environment variable.  There is probably no reason to enable this
144#  unless you are debugging a problem or are interested in what is
145#  going on under the hood.
146#
147DEF_DEBUG       = -DDEBUG
148
149#
150#  End of user configuration section.
151#
152
153prefix         = /usr/local
154src_dir        = .
155exec_prefix    = ${prefix}
156bin_dir        = $(exec_prefix)/bin
157inc_dir        = $(prefix)/include
158lib_dir        = $(exec_prefix)/lib
159man_src        = $(src_dir)/doc
160man_dir        = $(prefix)/man
161
162INSTALL        = $(src_dir)/autoconf/install-sh
163INSTALL_PROG   = $(INSTALL) -c
164INSTALL_DIR    = $(INSTALL) -d
165INSTALL_DATA   = $(INSTALL) -c -m 644
166INSTALL_MAN    = $(src_dir)/autoconf/install-man
167
168CC             = gcc
169DEBUG          =
170DEFINES        = -DSQSH_RC='${SQSHRC_PATH}' $(DEF_READLINE) \
171                 $(DEF_NOBCP) $(DEF_DEBUG) $(DEF_INSECURE) $(DEF_X11) \
172                 $(DEF_MOTIF) $(DEF_BUGFIX)
173INCLUDE_DIRS   = $(X_INCDIR) $(MOTIF_INCDIR) $(SYBASE_INCDIR) $(READLINE_INCDIR)
174LIB_DIRS       = $(X_LIBDIR) $(MOTIF_INCDIR) $(SYBASE_LIBDIR) $(READLINE_LIBDIR)
175CFLAGS         = -g -O2 $(DEBUG) $(DEFINES) $(INCLUDE_DIRS)
176CPPFLAGS       = -D_MSC_VER=800 -D_CYGWIN32_
177LDFLAGS        = $(DEBUG) $(LIB_DIRS)
178LIBS           = $(SYBASE_LIBS) $(X_LIBS) $(READLINE_LIBS)
179
180# The follow define information about the components that make up
181# the actual program.
182
183TARGET         = sqsh
184
185CMDS           =  \
186	cmd_alias.o cmd_bcp.o cmd_buf.o cmd_connect.o cmd_do.o \
187	cmd_echo.o cmd_exit.o cmd_for.o cmd_func.o cmd_go.o \
188	cmd_help.o cmd_history.o cmd_if.o cmd_input.o cmd_jobs.o \
189	cmd_kill.o cmd_lock.o cmd_loop.o cmd_misc.o cmd_read.o \
190	cmd_reconnect.o cmd_redraw.o cmd_reset.o cmd_return.o cmd_rpc.o \
191	cmd_set.o cmd_shell.o cmd_show.o cmd_sleep.o cmd_wait.o \
192	cmd_warranty.o cmd_while.o
193
194DISPLAYS       = \
195	dsp.o dsp_bcp.o dsp_conv.o dsp_desc.o dsp_horiz.o \
196	dsp_html.o dsp_meta.o dsp_none.o dsp_out.o dsp_pretty.o \
197	dsp_vert.o dsp_x.o
198
199VARS           = \
200	var_ctlib.o var_date.o var_debug.o var_dsp.o var_hist.o \
201	var_misc.o var_passwd.o var_readline.o var_thresh.o
202
203CORE           = \
204	sqsh_alias.o sqsh_args.o sqsh_avl.o sqsh_buf.o sqsh_cmd.o \
205	sqsh_compat.o sqsh_debug.o sqsh_env.o sqsh_error.o \
206	sqsh_expand.o sqsh_fd.o sqsh_filter.o sqsh_fork.o sqsh_func.o \
207	sqsh_getopt.o sqsh_global.o sqsh_history.o sqsh_init.o \
208	sqsh_job.o sqsh_readline.o sqsh_sig.o sqsh_sigcld.o sqsh_stdin.o \
209	sqsh_strchr.o sqsh_tok.o sqsh_varbuf.o
210
211OBJS = $(CMDS) $(VARS) $(DISPLAYS) $(CORE)
212
213MAN_PAGES      = sqsh.1
214SRCS           = $(OBJS:.o=.c)
215HEADERS        =
216
217$(TARGET) : $(OBJS) sqsh_main.o
218	$(CC) $(LDFLAGS) $(OBJS) sqsh_main.o $(LIBS) -o $@
219
220sqsh_test : $(OBJS) sqsh_test.o
221	$(CC) $(LDFLAGS) $(OBJS) sqsh_test.o $(LIBS) -o $@
222
223sig_test : sqsh_debug.o sqsh_error.o sqsh_sig.c
224	$(CC) $(LDFLAGS) $(DEF_DEBUG) -DSIG_TEST sqsh_debug.o sqsh_error.o \
225	                                         sqsh_sig.c -o sig_test
226
227clean :
228	rm -f *.o $(TARGET) sqsh_test sig_test
229
230realclean : clean
231	rm -f config.cache config.log config.status
232
233distclean : realclean
234	rm -f Makefile config.h core
235
236#
237# The following absolutely disgusting list of dependancies was
238# automatically generated via 'gcc -MM'
239#
240cmd_alias.o: cmd_alias.c sqsh_config.h config.h sqsh_compat.h \
241 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
242 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
243 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h cmd.h
244cmd_bcp.o: cmd_bcp.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
245 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
246 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
247 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_getopt.h sqsh_sig.h cmd.h
248cmd_buf.o: cmd_buf.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
249 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
250 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
251 sqsh_func.h sqsh_error.h sqsh_getopt.h sqsh_buf.h sqsh_stdin.h cmd.h
252cmd_connect.o: cmd_connect.c sqsh_config.h config.h sqsh_compat.h \
253 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
254 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
255 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_getopt.h \
256 sqsh_init.h sqsh_stdin.h cmd.h
257cmd_do.o: cmd_do.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
258 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
259 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
260 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h sqsh_buf.h \
261 sqsh_readline.h sqsh_getopt.h sqsh_stdin.h cmd.h cmd_misc.h \
262 cmd_input.h
263cmd_echo.o: cmd_echo.c sqsh_config.h config.h sqsh_compat.h \
264 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
265 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
266 sqsh_alias.h dsp.h sqsh_func.h cmd.h
267cmd_exit.o: cmd_exit.c sqsh_config.h config.h sqsh_compat.h \
268 sqsh_debug.h sqsh_cmd.h sqsh_avl.h cmd.h sqsh_varbuf.h
269cmd_for.o: cmd_for.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
270 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
271 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
272 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h sqsh_buf.h \
273 sqsh_readline.h sqsh_getopt.h sqsh_stdin.h cmd.h cmd_misc.h \
274 cmd_input.h
275cmd_func.o: cmd_func.c sqsh_config.h config.h sqsh_compat.h \
276 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
277 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
278 sqsh_alias.h dsp.h sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h \
279 sqsh_getopt.h sqsh_buf.h sqsh_stdin.h sqsh_readline.h cmd.h \
280 cmd_misc.h cmd_input.h
281cmd_go.o: cmd_go.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
282 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
283 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
284 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_getopt.h sqsh_buf.h \
285 sqsh_filter.h sqsh_stdin.h cmd.h cmd_misc.h
286cmd_help.o: cmd_help.c sqsh_config.h config.h sqsh_compat.h \
287 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
288 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
289 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h cmd.h
290cmd_history.o: cmd_history.c sqsh_config.h config.h sqsh_compat.h \
291 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
292 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
293 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h cmd.h
294cmd_if.o: cmd_if.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
295 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
296 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
297 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h sqsh_getopt.h \
298 sqsh_buf.h sqsh_stdin.h sqsh_readline.h cmd.h cmd_misc.h cmd_input.h
299cmd_input.o: cmd_input.c sqsh_config.h config.h sqsh_compat.h \
300 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
301 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
302 sqsh_alias.h dsp.h sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h \
303 sqsh_readline.h sqsh_stdin.h cmd.h cmd_misc.h cmd_input.h
304cmd_jobs.o: cmd_jobs.c sqsh_config.h config.h sqsh_compat.h \
305 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
306 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
307 sqsh_alias.h dsp.h sqsh_func.h cmd.h
308cmd_kill.o: cmd_kill.c sqsh_config.h config.h sqsh_compat.h \
309 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
310 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
311 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h cmd.h
312cmd_lock.o: cmd_lock.c sqsh_config.h config.h sqsh_compat.h \
313 sqsh_debug.h sqsh_cmd.h sqsh_avl.h sqsh_global.h sqsh_env.h \
314 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
315 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h cmd.h
316cmd_loop.o: cmd_loop.c sqsh_config.h config.h sqsh_compat.h \
317 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
318 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
319 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_getopt.h \
320 sqsh_readline.h sqsh_stdin.h cmd.h cmd_misc.h cmd_input.h
321cmd_misc.o: cmd_misc.c sqsh_config.h config.h sqsh_compat.h \
322 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
323 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
324 sqsh_alias.h dsp.h sqsh_func.h sqsh_expand.h sqsh_error.h cmd.h \
325 cmd_misc.h
326cmd_read.o: cmd_read.c sqsh_config.h config.h sqsh_compat.h \
327 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
328 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
329 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_getopt.h \
330 sqsh_readline.h sqsh_stdin.h cmd.h
331cmd_reconnect.o: cmd_reconnect.c sqsh_config.h config.h sqsh_compat.h \
332 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
333 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
334 sqsh_alias.h dsp.h sqsh_func.h cmd.h
335cmd_redraw.o: cmd_redraw.c sqsh_config.h config.h sqsh_compat.h \
336 sqsh_debug.h sqsh_cmd.h sqsh_avl.h cmd.h sqsh_varbuf.h
337cmd_reset.o: cmd_reset.c sqsh_config.h config.h sqsh_compat.h \
338 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
339 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
340 sqsh_alias.h dsp.h sqsh_func.h cmd.h
341cmd_return.o: cmd_return.c sqsh_config.h config.h sqsh_compat.h \
342 sqsh_debug.h sqsh_cmd.h sqsh_avl.h sqsh_env.h sqsh_global.h \
343 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
344 sqsh_alias.h dsp.h sqsh_func.h cmd.h
345cmd_rpc.o: cmd_rpc.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
346 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
347 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
348 sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_getopt.h sqsh_sig.h \
349 sqsh_stdin.h cmd.h
350cmd_set.o: cmd_set.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
351 sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
352 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
353 sqsh_alias.h dsp.h sqsh_func.h cmd.h
354cmd_shell.o: cmd_shell.c sqsh_config.h config.h sqsh_compat.h \
355 sqsh_debug.h sqsh_error.h sqsh_varbuf.h sqsh_global.h sqsh_env.h \
356 sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h \
357 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h cmd.h
358cmd_show.o: cmd_show.c sqsh_config.h config.h sqsh_compat.h \
359 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
360 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
361 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h cmd.h
362cmd_sleep.o: cmd_sleep.c sqsh_config.h config.h sqsh_compat.h \
363 sqsh_debug.h sqsh_cmd.h sqsh_avl.h cmd.h sqsh_varbuf.h
364cmd_wait.o: cmd_wait.c sqsh_config.h config.h sqsh_compat.h \
365 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
366 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
367 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_stdin.h cmd.h
368cmd_warranty.o: cmd_warranty.c sqsh_config.h config.h sqsh_compat.h \
369 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
370 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
371 sqsh_alias.h dsp.h sqsh_func.h cmd.h
372cmd_while.o: cmd_while.c sqsh_config.h config.h sqsh_compat.h \
373 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
374 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
375 sqsh_alias.h dsp.h sqsh_func.h sqsh_expand.h sqsh_error.h sqsh_sig.h \
376 sqsh_getopt.h sqsh_buf.h sqsh_stdin.h sqsh_readline.h sqsh_tok.h \
377 cmd.h cmd_misc.h cmd_input.h
378dsp.o: dsp.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
379 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
380 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
381 sqsh_func.h sqsh_error.h sqsh_sig.h
382dsp_bcp.o: dsp_bcp.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
383 sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
384 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
385 sqsh_alias.h dsp.h sqsh_func.h
386dsp_conv.o: dsp_conv.c sqsh_config.h config.h sqsh_compat.h \
387 sqsh_debug.h sqsh_error.h dsp.h
388dsp_desc.o: dsp_desc.c sqsh_config.h config.h sqsh_compat.h \
389 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
390 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
391 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
392dsp_horiz.o: dsp_horiz.c sqsh_config.h config.h sqsh_compat.h \
393 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
394 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
395 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
396dsp_html.o: dsp_html.c sqsh_config.h config.h sqsh_compat.h \
397 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
398 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
399 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
400dsp_meta.o: dsp_meta.c sqsh_config.h config.h sqsh_compat.h \
401 sqsh_debug.h sqsh_error.h dsp.h
402dsp_none.o: dsp_none.c sqsh_config.h config.h sqsh_compat.h \
403 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
404 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
405 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
406dsp_out.o: dsp_out.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
407 sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
408 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
409 sqsh_alias.h dsp.h sqsh_func.h
410dsp_pretty.o: dsp_pretty.c sqsh_config.h config.h sqsh_compat.h \
411 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
412 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
413 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
414dsp_vert.o: dsp_vert.c sqsh_config.h config.h sqsh_compat.h \
415 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
416 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
417 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h
418dsp_x.o: dsp_x.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
419 sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
420 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
421 sqsh_alias.h dsp.h sqsh_func.h
422sqsh_alias.o: sqsh_alias.c sqsh_config.h config.h sqsh_compat.h \
423 sqsh_debug.h sqsh_error.h sqsh_alias.h sqsh_varbuf.h sqsh_avl.h
424sqsh_args.o: sqsh_args.c sqsh_config.h config.h sqsh_compat.h \
425 sqsh_debug.h sqsh_error.h sqsh_args.h
426sqsh_avl.o: sqsh_avl.c sqsh_config.h config.h sqsh_compat.h \
427 sqsh_debug.h sqsh_error.h sqsh_avl.h
428sqsh_buf.o: sqsh_buf.c sqsh_config.h config.h sqsh_compat.h \
429 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
430 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
431 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_stdin.h sqsh_buf.h
432sqsh_cmd.o: sqsh_cmd.c sqsh_config.h config.h sqsh_compat.h \
433 sqsh_debug.h sqsh_error.h sqsh_avl.h sqsh_cmd.h
434sqsh_compat.o: sqsh_compat.c sqsh_config.h config.h sqsh_compat.h \
435 sqsh_debug.h sqsh_error.h sqsh_sig.h
436sqsh_debug.o: sqsh_debug.c sqsh_config.h config.h sqsh_compat.h \
437 sqsh_debug.h sqsh_error.h
438sqsh_env.o: sqsh_env.c sqsh_config.h config.h sqsh_compat.h \
439 sqsh_debug.h sqsh_error.h sqsh_env.h
440sqsh_error.o: sqsh_error.c sqsh_config.h config.h sqsh_compat.h \
441 sqsh_debug.h sqsh_error.h
442sqsh_expand.o: sqsh_expand.c sqsh_config.h config.h sqsh_compat.h \
443 sqsh_debug.h sqsh_error.h sqsh_varbuf.h sqsh_env.h sqsh_global.h \
444 sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h \
445 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_fd.h sqsh_expand.h \
446 sqsh_strchr.h sqsh_sig.h
447sqsh_fd.o: sqsh_fd.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
448 sqsh_sigcld.h sqsh_env.h sqsh_global.h sqsh_cmd.h sqsh_avl.h \
449 sqsh_job.h sqsh_args.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h \
450 dsp.h sqsh_func.h sqsh_error.h sqsh_fd.h
451sqsh_filter.o: sqsh_filter.c sqsh_config.h config.h sqsh_compat.h \
452 sqsh_debug.h sqsh_fd.h sqsh_sig.h sqsh_varbuf.h sqsh_error.h \
453 sqsh_filter.h
454sqsh_fork.o: sqsh_fork.c sqsh_config.h config.h sqsh_compat.h \
455 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
456 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
457 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_fork.h
458sqsh_func.o: sqsh_func.c sqsh_config.h config.h sqsh_compat.h \
459 sqsh_debug.h sqsh_error.h sqsh_avl.h sqsh_func.h
460sqsh_getopt.o: sqsh_getopt.c sqsh_config.h config.h sqsh_compat.h \
461 sqsh_debug.h sqsh_error.h sqsh_varbuf.h sqsh_global.h sqsh_env.h \
462 sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h \
463 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_getopt.h
464sqsh_global.o: sqsh_global.c sqsh_config.h config.h sqsh_compat.h \
465 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
466 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
467 sqsh_alias.h dsp.h sqsh_func.h
468sqsh_history.o: sqsh_history.c sqsh_config.h config.h sqsh_compat.h \
469 sqsh_debug.h sqsh_error.h sqsh_history.h sqsh_varbuf.h
470sqsh_init.o: sqsh_init.c sqsh_config.h config.h sqsh_compat.h \
471 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
472 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
473 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_expand.h \
474 sqsh_readline.h sqsh_stdin.h sqsh_init.h cmd.h var.h alias.h
475sqsh_job.o: sqsh_job.c sqsh_config.h config.h sqsh_compat.h \
476 sqsh_debug.h sqsh_error.h sqsh_fd.h sqsh_tok.h sqsh_varbuf.h \
477 sqsh_cmd.h sqsh_avl.h sqsh_global.h sqsh_env.h sqsh_job.h sqsh_args.h \
478 sqsh_sigcld.h sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h \
479 sqsh_fork.h sqsh_expand.h sqsh_strchr.h sqsh_getopt.h sqsh_sig.h
480sqsh_main.o: sqsh_main.c sqsh_config.h config.h sqsh_compat.h \
481 sqsh_debug.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_error.h \
482 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_varbuf.h \
483 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_getopt.h \
484 sqsh_init.h sqsh_fd.h sqsh_readline.h sqsh_expand.h sqsh_sig.h \
485 sqsh_stdin.h cmd.h
486sqsh_readline.o: sqsh_readline.c sqsh_config.h config.h sqsh_compat.h \
487 sqsh_debug.h sqsh_error.h sqsh_global.h sqsh_env.h sqsh_cmd.h \
488 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
489 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h sqsh_stdin.h \
490 sqsh_readline.h
491sqsh_sig.o: sqsh_sig.c sqsh_config.h config.h sqsh_compat.h \
492 sqsh_debug.h sqsh_error.h sqsh_sig.h
493sqsh_sigcld.o: sqsh_sigcld.c sqsh_config.h config.h sqsh_compat.h \
494 sqsh_debug.h sqsh_error.h sqsh_sig.h sqsh_sigcld.h
495sqsh_stdin.o: sqsh_stdin.c sqsh_config.h config.h sqsh_compat.h \
496 sqsh_debug.h sqsh_sigcld.h sqsh_env.h sqsh_global.h sqsh_cmd.h \
497 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_varbuf.h sqsh_history.h \
498 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_stdin.h
499sqsh_strchr.o: sqsh_strchr.c sqsh_config.h config.h sqsh_compat.h \
500 sqsh_debug.h sqsh_strchr.h sqsh_error.h
501sqsh_test.o: sqsh_test.c sqsh_config.h config.h sqsh_compat.h \
502 sqsh_debug.h sqsh_varbuf.h sqsh_filter.h
503sqsh_tok.o: sqsh_tok.c sqsh_config.h config.h sqsh_compat.h \
504 sqsh_debug.h sqsh_error.h sqsh_tok.h sqsh_varbuf.h
505sqsh_varbuf.o: sqsh_varbuf.c sqsh_config.h config.h sqsh_compat.h \
506 sqsh_debug.h sqsh_varbuf.h sqsh_error.h
507var_ctlib.o: var_ctlib.c sqsh_config.h config.h sqsh_compat.h \
508 sqsh_debug.h sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h \
509 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
510 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h sqsh_fd.h var.h
511var_date.o: var_date.c sqsh_config.h config.h sqsh_compat.h \
512 sqsh_debug.h sqsh_env.h sqsh_error.h sqsh_global.h sqsh_cmd.h \
513 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
514 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h var.h
515var_debug.o: var_debug.c sqsh_config.h config.h sqsh_compat.h \
516 sqsh_debug.h sqsh_env.h sqsh_error.h sqsh_global.h sqsh_cmd.h \
517 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
518 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h var.h
519var_dsp.o: var_dsp.c sqsh_config.h config.h sqsh_compat.h sqsh_debug.h \
520 sqsh_global.h sqsh_env.h sqsh_cmd.h sqsh_avl.h sqsh_job.h sqsh_args.h \
521 sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h sqsh_alias.h dsp.h \
522 sqsh_func.h sqsh_error.h sqsh_fd.h var.h
523var_hist.o: var_hist.c sqsh_config.h config.h sqsh_compat.h \
524 sqsh_debug.h sqsh_env.h sqsh_error.h sqsh_global.h sqsh_cmd.h \
525 sqsh_avl.h sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h \
526 sqsh_history.h sqsh_alias.h dsp.h sqsh_func.h var.h
527var_misc.o: var_misc.c sqsh_config.h config.h sqsh_compat.h \
528 sqsh_debug.h sqsh_env.h sqsh_error.h sqsh_stdin.h var.h
529var_passwd.o: var_passwd.c sqsh_config.h config.h sqsh_compat.h \
530 sqsh_debug.h sqsh_env.h sqsh_global.h sqsh_cmd.h sqsh_avl.h \
531 sqsh_job.h sqsh_args.h sqsh_sigcld.h sqsh_varbuf.h sqsh_history.h \
532 sqsh_alias.h dsp.h sqsh_func.h sqsh_error.h var.h
533var_readline.o: var_readline.c sqsh_config.h config.h sqsh_compat.h \
534 sqsh_debug.h sqsh_env.h sqsh_error.h var.h
535var_thresh.o: var_thresh.c sqsh_config.h config.h sqsh_compat.h \
536 sqsh_debug.h sqsh_env.h sqsh_error.h var.h
537