blob: f73bf67d3e08a725a0dc30f88e5c5b7cea1f4d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include include.mk
ALL_TARGETS = index.html \
download/index.html \
users/index.html \
users/mgp/index.html \
developers/index.html \
developers/mailarchive/index.html \
about/index.html \
img/go-oo-team.png
all: CHECK $(ALL_TARGETS)
img/go-oo-team.png: $(OOO_BUILD)/src/go-oo-team.png
cp $< $@
about/index.html: $(OOO_BUILD)/src/easter/people.txt
CHECK:
@test -d $(OOO_BUILD) || echo "WARNING: '$(OOO_BUILD)' is not a directory."
|