]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - factor/Makefile
cgram: allow navigation with KEY_PPAGE and KEY_NPAGE
[bsdgames-darwin.git] / factor / Makefile
1 # $NetBSD: Makefile,v 1.13 2017/05/21 15:28:41 riastradh Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
3
4 PROG= factor
5 SRCS= factor.c ../primes/pr_tbl.c
6 MAN= factor.6
7
8 all: $(PROG)
9
10 $(PROG): $(SRCS)
11 $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -I../primes -DHAVE_OPENSSL -lcrypto
12 $(STRIP) $(PROG)
13
14 install: $(PROG) $(MAN)
15 $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
16 $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
17
18 clean:
19 rm -f $(CLEANFILES) $(PROG)
20
21 .PHONY: all clean install