mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-22 16:44:32 +01:00
13 lines
201 B
Makefile
13 lines
201 B
Makefile
PROG= merge
|
|
SRCS= merge.c
|
|
|
|
.if exists(${.CURDIR}/../lib/obj)
|
|
LDADD= -L${.CURDIR}/../lib/obj -lrcs
|
|
.else
|
|
LDADD= -L${.CURDIR}/../lib/ -lrcs
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR}/../lib
|
|
|
|
.include <bsd.prog.mk>
|