]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - ching/printching/Makefile
Fix merge conflicts
[bsdgames-darwin.git] / ching / printching / Makefile
1 # $NetBSD: Makefile,v 1.1 2005/06/30 13:30:33 perry Exp $
2
3 PROG= printching
4 SRCS= printching.c
5
6 all: $(PROG)
7
8 $(PROG): $(SRCS)
9 $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I../include -I$(ROOT)
10 $(STRIP) $(PROG)
11
12 install: $(PROG)
13 $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/libexec/ching/$(PROG)
14
15 clean:
16 rm -f $(CLEANFILES) $(PROG)
17
18 .PHONY: all clean install