freebsd-dev/gnu/usr.bin/cvs/mkmodules/Makefile
Nate Williams 18b45b34dc Really fixed the obj/noobj problems in CVS, and also made it so a
make install did not install libcvs in /usr/lib, since it has no
reason to do that.
1993-07-06 19:12:57 +00:00

13 lines
261 B
Makefile

PROG = mkmodules
SRCS = mkmodules.c
CFLAGS += -I${.CURDIR}/../cvs -I${.CURDIR}/../lib
.if exists(${.CURDIR}/../lib/obj)
LDADD= -L${.CURDIR}/../lib/obj -lcvs
.else
LDADD= -L${.CURDIR}/../lib/ -lcvs
.endif
.include <bsd.prog.mk>
.include "../../Makefile.inc"