| 1 |
jmc |
1.3 |
# $Header: $ |
| 2 |
|
|
|
| 3 |
adcroft |
1.2 |
TARGS = about.htm browse.htm documentation.htm install.htm tutorials.htm search.htm sitemap.htm |
| 4 |
adcroft |
1.1 |
|
| 5 |
|
|
HEADERS = bits/header.html bits/topbar.html |
| 6 |
|
|
FOOTERS = bits/footer.html |
| 7 |
|
|
COMMONFILES = $(HEADERS) $(FOOTERS) |
| 8 |
|
|
|
| 9 |
|
|
all: $(TARGS) |
| 10 |
|
|
|
| 11 |
|
|
about.htm: bits/about_side.htm $(COMMONFILES) |
| 12 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 13 |
adcroft |
1.1 |
browse.htm: bits/browse_side.htm $(COMMONFILES) |
| 14 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 15 |
adcroft |
1.1 |
documentation.htm: bits/documentation_side.htm $(COMMONFILES) |
| 16 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 17 |
adcroft |
1.1 |
install.htm: bits/install_side.htm $(COMMONFILES) |
| 18 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 19 |
adcroft |
1.1 |
tutorials.htm: bits/tutorials_side.htm $(COMMONFILES) |
| 20 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 21 |
adcroft |
1.1 |
search.htm: bits/search_side.htm $(COMMONFILES) |
| 22 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 23 |
adcroft |
1.2 |
sitemap.htm: bits/about_side.htm $(COMMONFILES) |
| 24 |
jmc |
1.3 |
cat $(HEADERS) $< $(FOOTERS) | replace.sh > $@ |
| 25 |
adcroft |
1.1 |
|
| 26 |
|
|
clean: |
| 27 |
|
|
rm -f $(TARGS) |