Fixed up CVS like RCS to allow obj or no obj directory.

This commit is contained in:
Nate Williams 1993-06-25 19:39:48 +00:00
parent e2d79f66c4
commit fcc9b408f0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ CFLAGS += -I${.CURDIR}/../lib \
-DDIRENT -DSTDC_HEADERS -DPOSIX -DBROKEN_SIGISMEMBER \
-DFTIME_MISSING -DHAVE_TIMEZONE -DUTIME_NULL_MISSING -DDO_LINKS
LDADD= -L${.CURDIR}/../lib/obj -lcvs
LDADD= -L${.CURDIR}/../lib/${.CURDIR} -lcvs
SRCS = add.c admin.c checkin.c checkout.c classify.c commit.c \
create_adm.c diff.c entries.c find_names.c history.c ignore.c \

View file

@ -2,7 +2,7 @@ PROG = mkmodules
SRCS = mkmodules.c
CFLAGS += -I${.CURDIR}/../cvs -I${.CURDIR}/../lib
LDADD= -L${.CURDIR}/../lib/obj -lcvs
LDADD= -L${.CURDIR}/../lib/${.CURDIR} -lcvs
.include <bsd.prog.mk>
.include "../../Makefile.inc"