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