diff options
author | jkh <jkh@FreeBSD.org> | 1995-03-31 21:04:48 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-03-31 21:04:48 +0000 |
commit | bf8676024d1e905eb292b55251488c727d4a9f66 (patch) | |
tree | ebc38e0fde55ba384271d4609544627e5a6606ec /usr.bin/tip/libacu | |
parent | ee92602c3914c42e26b12cc261025d6558e1987c (diff) | |
download | FreeBSD-src-bf8676024d1e905eb292b55251488c727d4a9f66.zip FreeBSD-src-bf8676024d1e905eb292b55251488c727d4a9f66.tar.gz |
I must have been very sleepy last night, sigh..
1. Nuke out the aculib files that crept in somehow by mistake.
2. Fix the ${.CURDIR} path so that this stuff actually compiles.
It actually compiled for me before the commit, but I must have had
something short-cutting the bug.
Diffstat (limited to 'usr.bin/tip/libacu')
-rw-r--r-- | usr.bin/tip/libacu/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/usr.bin/tip/libacu/Makefile b/usr.bin/tip/libacu/Makefile index 1fb8ba0..12a2e44 100644 --- a/usr.bin/tip/libacu/Makefile +++ b/usr.bin/tip/libacu/Makefile @@ -1,6 +1,12 @@ -CFLAGS+= -g -I../tip -SRCS=acucommon.c biz22.c courier.c df.c dn11.c hayes.c multitech.c t3000.c tod.c unidialer.c v3451.c v831.c ventel.c LIB=acu -$(OBJS): ../tip/tipconf.h +CFLAGS+= -g -I${.CURDIR}/../tip +SRCS= acucommon.c biz22.c courier.c df.c dn11.c hayes.c \ + multitech.c t3000.c tod.c unidialer.c v3451.c v831.c ventel.c +NOPROFILE= yes + +$(OBJS): ${.CURDIR}/../tip/tipconf.h + install: + @echo -n + .include <bsd.lib.mk> |