From 1c7d0b339d578511be239c175ef2096e6e8aa6e2 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 21 Aug 2004 01:15:19 +0000 Subject: Added new files --- Makefile | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8a02f77..d4b4cb3 100644 --- a/Makefile +++ b/Makefile @@ -18,21 +18,43 @@ # # ------------------------------------------------------------------------- # -# $Id: Makefile,v 1.1.1.1 2004-08-20 01:14:42 ianc Exp $ +# $Id: Makefile,v 1.2 2004-08-21 01:15:19 ianc Exp $ # # CFLAGS assumes that gcc is being used - simply change as required # -CFLAGS = -g -Wall -Werror $(DEBUG) +CFLAGS = -g -Wall -Werror TARGET = int2tap +SOURCE = int2tap.c \ + intel.c \ + tap.c -$(TARGET): $(TARGET).c - $(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c +OBJECTS = int2tap.o \ + intel.o \ + tap.o -$(TARGET).txt: $(TARGET).1 - nroff -man $(TARGET).1 | sed 's/.//g' > $(TARGET).txt +$(TARGET): $(OBJECTS) + $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) clean: - rm -f $(TARGET) core + rm -f $(TARGET) $(OBJECTS) core + +depend: + make clean + makedepend -- $(CFLAGS) $(DEBUG) -- $(SOURCE) + if test -e Makefile ; then rm -f Makefile.bak ; fi + +# DO NOT DELETE THIS LINE -- make depend depends on it + +int2tap.o: /usr/include/stdlib.h /usr/include/sys/cdefs.h +int2tap.o: /usr/include/machine/ansi.h /usr/include/stdio.h +int2tap.o: /usr/include/string.h /usr/include/stdarg.h /usr/include/time.h +int2tap.o: /usr/include/sys/_posix.h /usr/include/errno.h +intel.o: /usr/include/stdlib.h /usr/include/sys/cdefs.h +intel.o: /usr/include/machine/ansi.h /usr/include/string.h +intel.o: /usr/include/stdio.h intel.h +tap.o: /usr/include/stdlib.h /usr/include/sys/cdefs.h +tap.o: /usr/include/machine/ansi.h /usr/include/string.h /usr/include/stdio.h +tap.o: tap.h -- cgit v1.2.3