]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - colorbars/Makefile
cgram: allow navigation with KEY_PPAGE and KEY_NPAGE
[bsdgames-darwin.git] / colorbars / Makefile
1 # $NetBSD: Makefile,v 1.4 2013/12/07 02:24:12 dholland Exp $
2
3 PROG= colorbars
4 MAN= colorbars.6
5 SRCS= colorbars.c
6
7 all: $(PROG)
8
9 $(PROG): $(SRCS)
10 $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw
11 $(STRIP) $(PROG)
12
13 install: $(PROG) $(MAN)
14 $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG)
15 $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN)
16
17 clean:
18 rm -f $(CLEANFILES) $(PROG)
19
20 .PHONY: all clean install