summaryrefslogtreecommitdiffstats
path: root/ching/castching/Makefile
blob: 905a9e32a28e893915397c0180833fe0e0f41e72 (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=	/usr/libexec/ching

all: $(PROG)

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

install: $(PROG)
	$(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/usr/libexec/ching/$(PROG)

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

.PHONY: all clean install