diff options
author | cperciva <cperciva@FreeBSD.org> | 2015-10-02 10:08:11 +0000 |
---|---|---|
committer | cperciva <cperciva@FreeBSD.org> | 2015-10-02 10:08:11 +0000 |
commit | 8cc71b38c27f2be8ba4c227078a51c63847a89de (patch) | |
tree | 0bbcb3f392def57bae56978c0da09362f7d6b426 /usr.bin/factor/Makefile | |
parent | 0c2e89c50542aa374d776ce0787b4a06e0de1be2 (diff) | |
download | FreeBSD-src-8cc71b38c27f2be8ba4c227078a51c63847a89de.zip FreeBSD-src-8cc71b38c27f2be8ba4c227078a51c63847a89de.tar.gz |
Final step of eliminating the "games" distribution: Merge src/games
(or what's left of it, at least) into src/usr.bin.
This change will not be MFCed.
Discussed at: EuroBSDCon 2014
Committed from: EuroBSDCon 2015
Diffstat (limited to 'usr.bin/factor/Makefile')
-rw-r--r-- | usr.bin/factor/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.bin/factor/Makefile b/usr.bin/factor/Makefile new file mode 100644 index 0000000..afc9510 --- /dev/null +++ b/usr.bin/factor/Makefile @@ -0,0 +1,20 @@ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ + +.include <src.opts.mk> + +PROG= factor +SRCS= factor.c pr_tbl.c +CFLAGS+=-I${.CURDIR}/../primes + +.if ${MK_OPENSSL} != "no" +CFLAGS+=-DHAVE_OPENSSL +DPADD= ${LIBCRYPTO} +LDADD= -lcrypto +.endif + +MAN= factor.6 +MLINKS+=factor.6 primes.6 +.PATH: ${.CURDIR}/../primes + +.include <bsd.prog.mk> |