]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - pom/Makefile
caesar: WARNS=6, strict bool mode
[bsdgames-darwin.git] / pom / Makefile
1 # $NetBSD: Makefile,v 1.8 2009/07/26 03:05:52 dholland Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
3
4 PROG= pom
5 MAN= pom.6
6 SRCS= pom.c
7
8 all: $(PROG)
9
10 $(PROG): $(SRCS)
11 $(CC) $(CFLAGS) -o $(PROG) $(SRCS)
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