about summary refs log tree commit diff stats
path: root/Makefile
blob: db1bb6cb60f4b916ea6b732d8de90cdb85f167b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# postcard

CSC = csc
PREFIX = /usr
PROGS = postcard mailbox

.SUFFIXES:
.SUFFIXES: .scm .o

all: $(PROGS)

.scm:
	$(CSC) -o $@ $<

.PHONY: install clean

install: $(PROGS)
	install -Dt $(DESTDIR)$(PREFIX)/bin $?

clean:
	-rm -f $(PROGS) *.o