summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-08-21 01:15:19 +0000
committerIan C <ianc@noddybox.co.uk>2004-08-21 01:15:19 +0000
commit1c7d0b339d578511be239c175ef2096e6e8aa6e2 (patch)
treee85266d073f05229f579ed84ad7e33f7da86ddfa /Makefile
parent666bf8d5ef44953391f4cf08c51175aff3d4dc60 (diff)
Added new files
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile36
1 files changed, 29 insertions, 7 deletions
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