diff options
author | msmith <msmith@FreeBSD.org> | 1997-07-28 03:33:04 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1997-07-28 03:33:04 +0000 |
commit | 648817bf62e691487863de32a003dd42214a94e9 (patch) | |
tree | b6bfd499f24b0aed743b22feb0a7ab8f895e1f3c /lib/libedit | |
parent | 4af16ddc99f2b351a0895401a2eef3ea538a865b (diff) | |
download | FreeBSD-src-648817bf62e691487863de32a003dd42214a94e9.zip FreeBSD-src-648817bf62e691487863de32a003dd42214a94e9.tar.gz |
Improve dependancy behaviour a little more.
This is still pretty disgusting.
Submitted by: bde
Diffstat (limited to 'lib/libedit')
-rw-r--r-- | lib/libedit/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile index 835f8e6..db3057f 100644 --- a/lib/libedit/Makefile +++ b/lib/libedit/Makefile @@ -55,10 +55,11 @@ help.c: ${ASRC} makelist help.h: ${ASRC} makelist sh ${.CURDIR}/makelist -bh ${ASRC} > ${.TARGET} -editline.c: ${OSRCS} help.h - sh ${.CURDIR}/makelist -e ${.ALLSRC:T} > ${.TARGET} +editline.c: + sh ${.CURDIR}/makelist -e ${OSRCS} > ${.TARGET} -beforedepend: vi.h emacs.h common.h fcns.h help.h help.c +beforedepend editline.o editline.po editline.so: \ + vi.h emacs.h common.h fcns.h fcns.c help.h help.c test: test.o libedit.a ${DPADD} ${LIBTERMCAP} ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD} |