diff options
author | ats <ats@FreeBSD.org> | 1995-05-28 21:20:30 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-05-28 21:20:30 +0000 |
commit | 4c3abf163be0d028b38926fb89cbe80eb193ca69 (patch) | |
tree | d39b0b595354ffe06816f2ca447b32adc712155b | |
parent | 96e4c12ad45aa06a267b0d1e4a3c76c5dab3331c (diff) | |
download | FreeBSD-src-4c3abf163be0d028b38926fb89cbe80eb193ca69.zip FreeBSD-src-4c3abf163be0d028b38926fb89cbe80eb193ca69.tar.gz |
Replaced the whole former Makefile with a more BSD conformant Makefile.
-rw-r--r-- | gnu/usr.sbin/isdn/ittd/Makefile | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/gnu/usr.sbin/isdn/ittd/Makefile b/gnu/usr.sbin/isdn/ittd/Makefile index 1e84b28..ef31c48 100644 --- a/gnu/usr.sbin/isdn/ittd/Makefile +++ b/gnu/usr.sbin/isdn/ittd/Makefile @@ -1,18 +1,5 @@ -I =/isdn/bin - -OPTIONS =-DBSD -O - -OBJS = ittd - -all: $(OBJS) - -ittd: ittd.c - cc $(OPTIONS) -o ittd ittd.c - -install: all - strip ittd - install ittd $I - -clean: - @rm -f $(OBJS) a.out core.* +PROG= ittd +CFLAGS+= -DBSD -O +NOMAN= yes +.include <bsd.prog.mk> |