summaryrefslogtreecommitdiffstats
path: root/ching/printching/Makefile
blob: 4adbc181728c2ccd4fd2edde36114f7bb77a28ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#	$NetBSD: Makefile,v 1.1 2005/06/30 13:30:33 perry Exp $

PROG=	printching
SRCS=	printching.c

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