blob: ecc7ac9ae5c0cab48873ebe49c07708044ff04d5 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<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:Q: sfeed.o xml.o util.o
cc $prereq -o $target
sfeed_html:Q: sfeed_html.o util.o
cc $prereq -o $target
sfeed_plain:Q: sfeed_plain.o util.o
cc $prereq -o $target
sfeed_frames:Q: sfeed_frames.o util.o
cc $prereq -o $target
sfeed_opml_import:Q: sfeed_opml_import.o util.o xml.o
cc $prereq -o $target
sfeed_stats:Q: sfeed_stats.o util.o
cc $prereq -o $target
sfeed_web:Q: sfeed_web.o util.o xml.o
cc $prereq -o $target
sfeed_xmlenc:Q: sfeed_xmlenc.o util.o xml.o
cc $prereq -o $target
%.o: %.c
cc $CFLAGS -c $stem.c
|