9 lines
145 B
Makefile
9 lines
145 B
Makefile
|
PROG= merge
|
||
|
SRCS= merge.c
|
||
|
CFLAGS+= -I${.CURDIR}/../lib
|
||
|
LDADD= ${LIBRCS}
|
||
|
DPADD= ${LIBRCS}
|
||
|
|
||
|
.include "../../Makefile.inc"
|
||
|
.include <bsd.prog.mk>
|