diff options
author | nop <nop> | 1997-03-03 03:44:59 +0000 |
---|---|---|
committer | nop <nop> | 1997-03-03 03:44:59 +0000 |
commit | a515162931c35db517995e3427cb41cee2a63a0a (patch) | |
tree | 8e3f82edf617adebc676d878af284c0678dad555 /Makefile.in | |
download | moo-a515162931c35db517995e3427cb41cee2a63a0a.tar.gz moo-a515162931c35db517995e3427cb41cee2a63a0a.tar.xz moo-a515162931c35db517995e3427cb41cee2a63a0a.zip |
Initial revision
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 439 |
1 files changed, 439 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..1d2bbcc --- /dev/null +++ b/Makefile.in @@ -0,0 +1,439 @@ +# Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved. +# Portions of this code were written by Stephen White, aka ghond. +# Use and copying of this software and preparation of derivative works based +# upon this software are permitted. Any distribution of this software or +# derivative works must comply with all applicable United States export +# control laws. This software is made available AS IS, and Xerox Corporation +# makes no warranty about the software, its performance or its conformity to +# any specification. Any person obtaining a copy of this software is requested +# to send their name and post office or electronic mail address to: +# Pavel Curtis +# Xerox PARC +# 3333 Coyote Hill Rd. +# Palo Alto, CA 94304 +# Pavel@Xerox.Com + +CC = @CC@ +LIBRARIES = @LIBS@ +YACC = @YACC@ + +CFLAGS = -O +YFLAGS = -d +COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c + +CSRCS = ast.c code_gen.c db_file.c db_io.c db_objects.c db_properties.c \ + db_verbs.c decompile.c disassemble.c eval_env.c eval_vm.c \ + exceptions.c execute.c extensions.c functions.c keywords.c list.c \ + log.c malloc.c match.c md5.c name_lookup.c network.c net_mplex.c \ + net_proto.c numbers.c objects.c parse_cmd.c pattern.c program.c \ + property.c quota.c ref_count.c regexpr.c server.c storage.c streams.c \ + sym_table.c tasks.c timers.c unparse.c utils.c verbs.c version.c + +OPT_NET_SRCS = net_single.c net_multi.c \ + net_mp_selct.c net_mp_poll.c net_mp_fake.c \ + net_bsd_tcp.c net_bsd_lcl.c net_sysv_tcp.c net_sysv_lcl.c + +OPT_NET_OBJS = $(OPT_NET_SRCS:.c=.o) + +OPT_CSRCS = gnu-malloc.c $(OPT_NET_SRCS) + +YSRCS = parser.y + +HDRS = ast.h bf_register.h code_gen.h db.h db_io.h db_private.h decompile.h \ + disassemble.h eval_env.h eval_vm.h exceptions.h execute.h functions.h \ + getpagesize.h keywords.h list.h log.h match.h md5.h name_lookup.h \ + network.h net_mplex.h net_multi.h net_proto.h numbers.h opcode.h \ + options.h parse_cmd.h parser.h pattern.h program.h quota.h random.h \ + ref_count.h regexpr.h server.h storage.h streams.h structures.h \ + sym_table.h tasks.h timers.h tokens.h unparse.h utils.h verbs.h \ + version.h + +SYSHDRS = my-ctype.h my-fcntl.h my-in.h my-inet.h my-ioctl.h my-math.h \ + my-poll.h my-signal.h my-socket.h my-stat.h my-stdarg.h my-stdio.h \ + my-stdlib.h my-string.h my-stropts.h my-sys-time.h my-time.h \ + my-tiuser.h my-types.h my-unistd.h my-wait.h + +CLIENT_SRCS = client_bsd.c client_sysv.c + +ALL_CSRCS = $(CSRCS) $(OPT_CSRCS) $(CLIENT_SRCS) + +SRCS = $(ALL_CSRCS) keywords.gperf $(YSRCS) $(HDRS) $(SYSHDRS) + +DISTFILES = $(SRCS) Makefile.in restart restart.sh \ + Minimal.db README.Minimal \ + ChangeLog.txt README configure.in configure config.h.in \ + MOOCodeSequences.txt AddingNewMOOTypes.txt pgperf aclocal.m4 + +COBJS = $(CSRCS:.c=.o) + +YOBJS = $(YSRCS:.y=.o) + +OBJS = $(COBJS) $(YOBJS) + +moo: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) $(LIBRARIES) -o $@ + +pure_moo: moo + purify $(CC) $(CFLAGS) $(OBJS) $(LIBRARIES) -o $@ + +client_bsd: client_bsd.o + $(CC) $(CFLAGS) client_bsd.o $(LIBRARIES) -o $@ + +client_sysv: client_sysv.o + $(CC) $(CFLAGS) client_sysv.o $(LIBRARIES) -o $@ + +# This rule gets around some "make"s' desire to `derive' it from `restart.sh'. +restart: + touch restart + +configure: configure.in + autoconf + +config.status: configure + env CC= YACC= ./configure --no-create + +Makefile: Makefile.in config.status + @echo "[ $@ : $? ]" + ./config.status + +config.h: config.h.in config.status + @echo "[ $@ : $? ]" + ./config.status + +y.tab.h: parser.o + touch y.tab.h + +keywords.c: keywords.gperf + pgperf -aCIptT -k1,3,$$ keywords.gperf \ + | sed -e 's/#include <ctype.h>/#include "my-ctype.h"/' \ + > keywords.c + +dist.tar.Z: $(DISTFILES) + rm -f version_number + grep "server_version = " version.c \ + | sed -e 's/^.* = "//' -e 's/";//' > version_number + rm -fr MOO-`cat version_number` + mkdir MOO-`cat version_number` + chmod 755 MOO-`cat version_number` + cp -pr $(DISTFILES) MOO-`cat version_number` + chmod u+w MOO-`cat version_number`/* + tar cvf - MOO-`cat version_number` | compress -c > dist.tar.Z.NEW + mv dist.tar.Z.NEW dist.tar.Z + rm -f LambdaMOO-`cat version_number`.tar.Z + ln dist.tar.Z LambdaMOO-`cat version_number`.tar.Z + rm -fr MOO-`cat version_number` version_number + +tags: + etags -t $(SRCS) + +clean: + rm -f $(OBJS) core y.tab.c y.tab.h y.output makedep eddep config.h \ + Makefile config.status + +depend: ${ALL_CSRCS} + rm -f eddep makedep + gcc -MM ${CFLAGS} ${ALL_CSRCS} | sed -e '/:$$/d' > makedep + echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >eddep + echo '$$r makedep' >>eddep + echo 'w' >>eddep + cp Makefile.in Makefile.in.bak + ex - Makefile.in < eddep + rm -f eddep makedep + +############################################################################### +# $Log$ +# Revision 1.1 1997/03/03 03:45:05 nop +# Initial revision +# +# Revision 2.10 1996/04/19 01:28:40 pavel +# Ran a new `make depend'. Release 1.8.0p4. +# +# Revision 2.9 1996/03/10 01:31:24 pavel +# Added pgperf directory and aclocal.m4 file to the distribution. +# Release 1.8.0. +# +# Revision 2.8 1996/02/18 23:18:02 pavel +# Added md5.[ch]. Release 1.8.0beta3. +# +# Revision 2.7 1996/02/08 07:26:19 pavel +# Updated copyright notice for 1996. Release 1.8.0beta1 (again). +# +# Revision 2.6 1996/02/08 05:46:27 pavel +# Added numbers.h, AddingNewMOOTypes.txt. Updated dependencies. Made pure_moo +# depend on moo. Release 1.8.0beta1. +# +# Revision 2.5 1996/01/16 07:35:55 pavel +# Fixed dependencies. Release 1.8.0alpha6. +# +# Revision 2.4 1996/01/11 07:58:54 pavel +# Fixed dependencies for parser.o. Release 1.8.0alpha5. +# +# Revision 2.3 1995/12/31 03:29:29 pavel +# Fixed dependencies for parser.y and the networking modules. +# Release 1.8.0alpha4. +# +# Revision 2.2 1995/12/28 00:32:32 pavel +# Added verbs.h. Release 1.8.0alpha3. +# +# Revision 2.1 1995/12/11 08:07:47 pavel +# Added a few more derived files to `make clean'. Release 1.8.0alpha2. +# +# Revision 2.0 1995/11/30 05:45:03 pavel +# New baseline version, corresponding to release 1.8.0alpha1. +# +# Revision 1.26 1992/10/23 23:10:29 pavel +# Updated dependency information for release 1.7.0 and added copyright notice. +# +# Revision 1.25 1992/10/23 19:12:08 pavel +# A few last portability changes for release 1.7.0. +# +# Revision 1.24 1992/10/21 03:02:35 pavel +# Converted to use new automatic configuration system. +# +# Revision 1.23 1992/10/17 20:14:17 pavel +# Numerous changes in response to beta-testing portability problems. +# +# Revision 1.22 1992/10/06 01:32:41 pavel +# Dyked out useless XNS network support. +# Added sources for clients and a few new my-*.h files. +# Fixed nasty bug in `make depend' code. +# +# Revision 1.21 1992/09/23 17:23:08 pavel +# Added support for the whole family of networking protocol and multiplexing +# wait implementations; it should now be easy to add new `optional' sources, +# only used if certain combinations of preprocessor flags are set. +# +# Revision 1.20 1992/09/14 18:42:47 pjames +# Updated. +# +# Revision 1.19 1992/09/14 17:46:39 pjames +# Updated. +# +# Revision 1.18 1992/09/08 22:49:59 pjames +# Took out bf_move.c +# +# Revision 1.17 1992/09/08 22:09:23 pjames +# Updated for new bf_ filenames +# +# Revision 1.16 1992/09/03 23:49:13 pavel +# Added support for multiple complete network implementations. +# +# Revision 1.15 1992/09/03 16:32:40 pjames +# Updated. +# +# Revision 1.14 1992/08/31 23:43:57 pavel +# Added math library to the LIBRARIES line for A/UX. +# +# Revision 1.13 1992/08/28 16:32:18 pjames +# Added ref_count modules. +# +# Revision 1.12 1992/08/21 01:09:56 pavel +# Minor fix. +# +# Revision 1.11 1992/08/21 00:56:39 pavel +# Shortened the names of several files to fit within the 14-character limit +# imposed on certain systems. +# Moved the specification of all configuration options other than those +# directly related to the compiler command line into config.h. Also +# reorganized the ones that are left to make it easier for folks to see what's +# necessary. +# +# Revision 1.10 1992/08/14 00:35:21 pavel +# Fixed rule for dist.tar.Z to be idempotent. +# +# Revision 1.9 1992/08/13 23:35:42 pavel +# Cleaned up CFLAGS organization. +# +# Revision 1.8 1992/08/13 23:24:34 pavel +# Did a more recent `make depend'... +# +# Revision 1.7 1992/08/13 22:48:20 pjames +# Added my-math.h +# +# Revision 1.6 1992/08/13 21:29:58 pjames +# Added -DMOO to COMPILE.c +# +# Revision 1.5 1992/08/11 17:06:45 pjames +# Updated with new source files, removed old source files, fixed dependencies. +# +# Revision 1.3 1992/07/27 18:30:21 pjames +# Update what vector.o and vector.po depend on. +############################################################################### + +# Have to do this one manually, since 'make depend' can't hack yacc files. +parser.o: my-ctype.h my-math.h my-stdlib.h my-string.h \ + ast.h code_gen.h config.h functions.h \ + keywords.h list.h log.h numbers.h opcode.h parser.h program.h \ + storage.h streams.h structures.h sym_table.h utils.h version.h + +# Must do these specially, since they depend upon C preprocessor options. +network.o: net_single.o net_multi.o +net_proto.o: net_bsd_tcp.o net_bsd_lcl.o net_sysv_tcp.o net_sysv_lcl.o +net_mplex.o: net_mp_selct.o net_mp_poll.o net_mp_fake.o + +$(OPT_NET_OBJS): + touch $@ + +# DO NOT DELETE THIS LINE -- 'make depend' replaces everything below it. +ast.o : ast.c my-string.h config.h ast.h parser.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h sym_table.h list.h log.h storage.h utils.h \ + execute.h db.h opcode.h parse_cmd.h +code_gen.o : code_gen.c ast.h config.h parser.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h sym_table.h exceptions.h opcode.h storage.h \ + utils.h execute.h db.h parse_cmd.h +db_file.o : db_file.c my-stat.h config.h my-stdio.h my-types.h my-stdarg.h my-stdlib.h \ + db.h program.h structures.h version.h db_io.h db_private.h exceptions.h list.h \ + log.h options.h server.h network.h storage.h streams.h tasks.h execute.h opcode.h \ + parse_cmd.h timers.h my-time.h +db_io.o : db_io.c my-ctype.h config.h my-stdarg.h my-stdio.h my-types.h my-stdlib.h \ + db_io.h program.h structures.h version.h db_private.h exceptions.h list.h log.h \ + numbers.h parser.h storage.h streams.h unparse.h +db_objects.o : db_objects.c config.h db.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h db_private.h exceptions.h list.h storage.h \ + utils.h execute.h opcode.h parse_cmd.h +db_properties.o : db_properties.c config.h db.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h db_private.h exceptions.h list.h storage.h \ + utils.h execute.h opcode.h parse_cmd.h +db_verbs.o : db_verbs.c my-stdlib.h config.h my-string.h db.h program.h structures.h \ + my-stdio.h my-types.h my-stdarg.h version.h db_private.h exceptions.h parse_cmd.h \ + storage.h utils.h execute.h opcode.h +decompile.o : decompile.c ast.h config.h parser.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h sym_table.h decompile.h exceptions.h opcode.h \ + storage.h utils.h execute.h db.h parse_cmd.h +disassemble.o : disassemble.c my-stdio.h config.h my-types.h my-stdarg.h bf_register.h \ + db.h program.h structures.h version.h functions.h execute.h opcode.h parse_cmd.h \ + list.h storage.h streams.h unparse.h utils.h verbs.h +eval_env.o : eval_env.c config.h eval_env.h structures.h my-stdio.h my-types.h \ + my-stdarg.h version.h storage.h sym_table.h utils.h execute.h db.h program.h \ + opcode.h parse_cmd.h +eval_vm.o : eval_vm.c config.h db_io.h program.h structures.h my-stdio.h my-types.h \ + my-stdarg.h version.h decompile.h ast.h parser.h sym_table.h eval_vm.h execute.h \ + db.h opcode.h parse_cmd.h log.h options.h storage.h tasks.h +exceptions.o : exceptions.c exceptions.h config.h +execute.o : execute.c my-string.h config.h db.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h db_io.h decompile.h ast.h parser.h sym_table.h \ + eval_env.h eval_vm.h execute.h opcode.h parse_cmd.h exceptions.h functions.h \ + list.h log.h numbers.h options.h server.h network.h storage.h streams.h tasks.h \ + timers.h my-time.h utils.h +extensions.o : extensions.c bf_register.h functions.h my-stdio.h config.h my-types.h \ + my-stdarg.h execute.h db.h program.h structures.h version.h opcode.h parse_cmd.h +functions.o : functions.c my-stdarg.h config.h bf_register.h db_io.h program.h \ + structures.h my-stdio.h my-types.h version.h functions.h execute.h db.h opcode.h \ + parse_cmd.h list.h log.h server.h network.h options.h storage.h streams.h unparse.h \ + utils.h +keywords.o : keywords.c my-ctype.h config.h my-string.h keywords.h structures.h \ + my-stdio.h my-types.h my-stdarg.h version.h tokens.h ast.h parser.h program.h \ + sym_table.h y.tab.h utils.h execute.h db.h opcode.h parse_cmd.h +list.o : list.c my-ctype.h config.h my-string.h bf_register.h exceptions.h functions.h \ + my-stdio.h my-types.h my-stdarg.h execute.h db.h program.h structures.h version.h \ + opcode.h parse_cmd.h list.h log.h md5.h options.h pattern.h random.h ref_count.h \ + streams.h storage.h unparse.h utils.h +log.o : log.c my-stdarg.h config.h my-stdio.h my-types.h my-string.h my-time.h \ + bf_register.h functions.h execute.h db.h program.h structures.h version.h opcode.h \ + parse_cmd.h log.h options.h storage.h streams.h utils.h +malloc.o : malloc.c options.h config.h +match.o : match.c my-stdlib.h config.h my-string.h db.h program.h structures.h \ + my-stdio.h my-types.h my-stdarg.h version.h exceptions.h match.h parse_cmd.h \ + storage.h unparse.h utils.h execute.h opcode.h +md5.o : md5.c my-string.h config.h md5.h +name_lookup.o : name_lookup.c options.h config.h my-signal.h my-stdlib.h my-unistd.h \ + my-inet.h my-in.h my-types.h my-socket.h my-wait.h my-string.h log.h my-stdio.h \ + my-stdarg.h structures.h server.h network.h storage.h timers.h my-time.h +network.o : network.c options.h config.h net_multi.c my-ctype.h my-fcntl.h my-ioctl.h \ + my-signal.h my-stdio.h my-types.h my-stdarg.h my-stdlib.h my-string.h my-unistd.h \ + exceptions.h list.h structures.h log.h net_mplex.h net_multi.h net_proto.h network.h \ + server.h streams.h storage.h timers.h my-time.h utils.h execute.h db.h program.h \ + version.h opcode.h parse_cmd.h +net_mplex.o : net_mplex.c options.h config.h net_mp_selct.c my-string.h my-sys-time.h \ + my-types.h log.h my-stdio.h my-stdarg.h structures.h net_mplex.h +net_proto.o : net_proto.c options.h config.h net_bsd_tcp.c my-inet.h my-in.h \ + my-types.h my-socket.h my-stdlib.h my-string.h my-unistd.h list.h structures.h \ + my-stdio.h my-stdarg.h log.h name_lookup.h net_proto.h server.h network.h streams.h \ + timers.h my-time.h utils.h execute.h db.h program.h version.h opcode.h parse_cmd.h +numbers.o : numbers.c my-math.h my-stdlib.h config.h my-string.h my-time.h my-types.h \ + functions.h my-stdio.h my-stdarg.h execute.h db.h program.h structures.h version.h \ + opcode.h parse_cmd.h log.h random.h storage.h utils.h +objects.o : objects.c db.h config.h program.h structures.h my-stdio.h my-types.h \ + my-stdarg.h version.h db_io.h exceptions.h execute.h opcode.h parse_cmd.h functions.h \ + list.h numbers.h quota.h server.h network.h options.h storage.h utils.h +parse_cmd.o : parse_cmd.c my-ctype.h config.h my-stdio.h my-types.h my-stdarg.h \ + my-stdlib.h my-string.h my-time.h db.h program.h structures.h version.h list.h \ + match.h parse_cmd.h storage.h utils.h execute.h opcode.h +pattern.o : pattern.c my-ctype.h config.h my-stdlib.h my-string.h pattern.h \ + regexpr.h storage.h structures.h my-stdio.h my-types.h my-stdarg.h streams.h +program.o : program.c ast.h config.h parser.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h sym_table.h exceptions.h list.h storage.h utils.h \ + execute.h db.h opcode.h parse_cmd.h +property.o : property.c db.h config.h program.h structures.h my-stdio.h my-types.h \ + my-stdarg.h version.h functions.h execute.h opcode.h parse_cmd.h list.h storage.h \ + utils.h +quota.o : quota.c config.h db.h program.h structures.h my-stdio.h my-types.h \ + my-stdarg.h version.h quota.h +ref_count.o : ref_count.c config.h exceptions.h ref_count.h storage.h structures.h \ + my-stdio.h my-types.h my-stdarg.h +regexpr.o : regexpr.c my-stdio.h config.h my-types.h my-stdarg.h regexpr.h my-stdlib.h \ + my-string.h +server.o : server.c my-types.h config.h my-signal.h my-stdarg.h my-stdio.h my-stdlib.h \ + my-string.h my-unistd.h my-wait.h db.h program.h structures.h version.h db_io.h \ + disassemble.h execute.h opcode.h parse_cmd.h functions.h list.h log.h network.h \ + options.h server.h parser.h random.h storage.h streams.h tasks.h timers.h my-time.h \ + unparse.h utils.h +storage.o : storage.c my-stdlib.h config.h exceptions.h list.h structures.h \ + my-stdio.h my-types.h my-stdarg.h options.h ref_count.h storage.h +streams.o : streams.c my-stdarg.h config.h my-string.h my-stdio.h my-types.h \ + log.h structures.h storage.h streams.h +sym_table.o : sym_table.c my-stdio.h config.h my-types.h my-stdarg.h ast.h parser.h \ + program.h structures.h version.h sym_table.h exceptions.h log.h storage.h utils.h \ + execute.h db.h opcode.h parse_cmd.h +tasks.o : tasks.c my-string.h config.h my-time.h my-types.h db.h program.h structures.h \ + my-stdio.h my-stdarg.h version.h db_io.h decompile.h ast.h parser.h sym_table.h \ + eval_env.h eval_vm.h execute.h opcode.h parse_cmd.h exceptions.h functions.h \ + list.h log.h match.h options.h random.h server.h network.h storage.h streams.h \ + tasks.h utils.h verbs.h +timers.o : timers.c my-signal.h config.h my-stdlib.h my-sys-time.h options.h \ + my-types.h my-time.h my-unistd.h timers.h +unparse.o : unparse.c my-ctype.h config.h my-stdio.h my-types.h my-stdarg.h \ + ast.h parser.h program.h structures.h version.h sym_table.h decompile.h exceptions.h \ + functions.h execute.h db.h opcode.h parse_cmd.h keywords.h list.h log.h unparse.h \ + storage.h streams.h utils.h +utils.o : utils.c my-ctype.h config.h my-stdio.h my-types.h my-stdarg.h my-string.h \ + db.h program.h structures.h version.h db_io.h exceptions.h list.h log.h match.h \ + numbers.h ref_count.h server.h network.h options.h storage.h streams.h utils.h \ + execute.h opcode.h parse_cmd.h +verbs.o : verbs.c my-string.h config.h db.h program.h structures.h my-stdio.h \ + my-types.h my-stdarg.h version.h exceptions.h execute.h opcode.h parse_cmd.h \ + functions.h list.h log.h match.h parser.h server.h network.h options.h storage.h \ + unparse.h utils.h verbs.h +version.o : version.c config.h version.h +gnu-malloc.o : gnu-malloc.c getpagesize.h +net_single.o : net_single.c my-ctype.h config.h my-fcntl.h my-stdio.h my-types.h \ + my-stdarg.h my-unistd.h log.h structures.h network.h options.h server.h streams.h \ + utils.h execute.h db.h program.h version.h opcode.h parse_cmd.h +net_multi.o : net_multi.c my-ctype.h config.h my-fcntl.h my-ioctl.h my-signal.h \ + my-stdio.h my-types.h my-stdarg.h my-stdlib.h my-string.h my-unistd.h exceptions.h \ + list.h structures.h log.h net_mplex.h net_multi.h net_proto.h options.h network.h \ + server.h streams.h storage.h timers.h my-time.h utils.h execute.h db.h program.h \ + version.h opcode.h parse_cmd.h +net_mp_selct.o : net_mp_selct.c my-string.h config.h my-sys-time.h options.h \ + my-types.h log.h my-stdio.h my-stdarg.h structures.h net_mplex.h +net_mp_poll.o : net_mp_poll.c my-poll.h config.h log.h my-stdio.h my-types.h \ + my-stdarg.h structures.h net_mplex.h storage.h +net_bsd_tcp.o : net_bsd_tcp.c my-inet.h config.h my-in.h my-types.h my-socket.h \ + my-stdlib.h my-string.h my-unistd.h list.h structures.h my-stdio.h my-stdarg.h \ + log.h name_lookup.h net_proto.h options.h server.h network.h streams.h timers.h \ + my-time.h utils.h execute.h db.h program.h version.h opcode.h parse_cmd.h +net_bsd_lcl.o : net_bsd_lcl.c my-socket.h config.h my-types.h my-stdio.h my-stdarg.h \ + my-string.h my-unistd.h log.h structures.h net_proto.h options.h storage.h utils.h \ + execute.h db.h program.h version.h opcode.h parse_cmd.h +net_sysv_tcp.o : net_sysv_tcp.c my-inet.h config.h my-in.h my-types.h my-fcntl.h \ + my-ioctl.h my-socket.h my-stdlib.h my-string.h my-stropts.h my-tiuser.h my-unistd.h \ + log.h my-stdio.h my-stdarg.h structures.h name_lookup.h net_proto.h options.h \ + server.h network.h streams.h timers.h my-time.h +net_sysv_lcl.o : net_sysv_lcl.c my-fcntl.h config.h my-stat.h my-stdio.h my-types.h \ + my-stdarg.h my-stdlib.h my-unistd.h exceptions.h list.h structures.h log.h net_multi.h \ + net_proto.h options.h storage.h streams.h utils.h execute.h db.h program.h version.h \ + opcode.h parse_cmd.h +client_bsd.o : client_bsd.c my-socket.h config.h my-types.h my-stdio.h my-stdarg.h \ + my-stdlib.h my-string.h my-sys-time.h options.h my-unistd.h +client_sysv.o : client_sysv.c my-fcntl.h config.h my-signal.h my-stdio.h my-types.h \ + my-stdarg.h my-stdlib.h my-string.h my-stat.h my-unistd.h options.h |