mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
13 lines
177 B
Makefile
13 lines
177 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
TESTS= test-libmp
|
||
|
|
CFLAGS+= -g -Wall -lcrypto -lmp
|
||
|
|
|
||
|
|
.PHONY: tests
|
||
|
|
tests: ${TESTS}
|
||
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
-rm -f ${TESTS}
|