summaryrefslogtreecommitdiffstats
path: root/canfield/cfscores/Makefile
blob: f8c9518e456c252044994178ae88add804acb93e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$NetBSD: Makefile,v 1.7 2002/09/18 06:16:40 lukem Exp $
#	@(#)Makefile	8.1 (Berkeley) 5/31/93

PROG=		cfscores
SRCS=		cfscores.c

all: $(PROG)

$(PROG): $(SRCS)
	$(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I../canfield
	$(STRIP) $(PROG)

install: $(PROG) $(MAN)
	$(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/games/$(PROG)

clean:
	rm -f $(CLEANFILES) $(PROG)

.PHONY: all clean install