summaryrefslogtreecommitdiff
path: root/mkfile
blob: 7f3901b84ba0e5e8961d545ac8a42459d8bb060d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<config.mk

bins=sfeed sfeed_html sfeed_frames sfeed_plain sfeed_stats sfeed_web \
	sfeed_xmlenc sfeed_opml_import

build:Q: $bins
	

clean:Q:
	rm -f *.o
	rm -f core a.out
	rm -f $bins

install: build
	echo "TODO"

sfeed: xml.o
sfeed_opml_import: xml.o
sfeed_web: xml.o
sfeed_xmlenc: xml.o

&: &.o util.o
	cc $prereq -o $target

&.o: &.c
	cc $CFLAGS -c $stem.c