summaryrefslogtreecommitdiff
path: root/mkfile
blob: 6ffd46737b9869ff7cc3cd7e803234ed47a22a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CC = cc

<config.mk

TARG = sfeed sfeed_html sfeed_frames sfeed_plain sfeed_stats sfeed_web \
	sfeed_xmlenc sfeed_opml_import

all: $TARG
	

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

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