18b45b34dc
make install did not install libcvs in /usr/lib, since it has no reason to do that.
13 lines
261 B
Makefile
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"
|