summaryrefslogtreecommitdiffstats
path: root/ching/printching/Makefile
blob: e8e6634f48052b9bd220c63a9ac0a1730cb47729 (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 -I$(ROOT)
	$(STRIP) $(PROG)

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

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

.PHONY: all clean install