summaryrefslogtreecommitdiffstats
path: root/ching/castching/Makefile
blob: 6bdfcf944c64ea79545a48bc0e6921ed89b3e657 (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.1 2005/06/30 13:30:33 perry Exp $

PROG=	castching
SRCS=	castching.c
BINDIR=	$(PREFIX)/libexec/ching

all: $(PROG)

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

install: $(PROG)
	$(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(BINDIR)/$(PROG)

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

.PHONY: all clean install