opnsense-src/tools/regression/lib/libc/string/Makefile
Nik Clayton 8948ad6b58 Add to CFLAGS, rather than overriding it. Use LDFLAGS for the -L option,
and LDLIBS to specify -ltap.

Submitted by:	ru
2005-02-01 09:26:34 +00:00

15 lines
222 B
Makefile

# $FreeBSD$
CFLAGS+= -I/usr/local/include
LDFLAGS+= -L/usr/local/lib
LDLIBS= -ltap
TESTS= test-strerror
.PHONY: tests
tests: ${TESTS}
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
.PHONY: clean
clean:
-rm -f ${TESTS}