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