Mercurial > mxd2map
annotate website/buildhtml.mk @ 190:c640fb351f66
Do not write layer with empty CLASS objects.
author | raimund renkert <raimund.renkert@intevation.de> |
---|---|
date | Wed, 20 Jul 2011 16:00:22 +0200 |
parents | dd4bb5869f86 |
children | 123ebb293f3a |
rev | line source |
---|---|
155 | 1 # Build html from m4 macrofiles |
2 # $Id$ | |
3 # | |
4 # (c)2005,2006 by Intevation GmbH | |
5 # Author(s): Sascha Wilde | |
6 # | |
7 # This is Free Software licensed under the GPL | |
8 | |
9 # Preprocessor configuration | |
10 PP = m4 | |
11 PPFLAGS = --prefix-builtins | |
12 | |
13 # Build configuration | |
156
67d395ac5509
updated buildhtml to hg.
Emanuel Schuetze <emanuel@intevation.de>
parents:
155
diff
changeset
|
14 TARGETS = $(patsubst %.htm4,%.html,$(wildcard *.htm4)) |
155 | 15 SUBDIRS = |
16 | |
17 # Installation configuration | |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
18 INSTALL_DIR = ./mxd2map-www |
155 | 19 ADD_INST_TYPES = *.css *.php *.png |
20 ADD_INST_DIRS = img | |
21 | |
22 CURDIR=$(shell pwd) | |
23 | |
24 .SUFFIXES: .html .htm4 | |
25 | |
26 .htm4.html: | |
27 $(PP) -DNO_LINK_FOR=$@ $(PPFLAGS) $< > $@ | |
28 | |
29 all: $(TARGETS) subdirs | |
30 | |
31 $(TARGETS): template.m4 template_header.m4 \ | |
32 header.m4 style.css | |
33 | |
34 subdirs: $(SUBDIRS) | |
35 @for dir in $^ ; do \ | |
36 $(MAKE) -C $$dir SUBDIRS="" ; \ | |
37 done | |
38 | |
39 online: all | |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
40 echo "Going to put current contents online for www.mxd2mapp.org ..." |
156
67d395ac5509
updated buildhtml to hg.
Emanuel Schuetze <emanuel@intevation.de>
parents:
155
diff
changeset
|
41 rsync -urvP --exclude='.hg' $(ADD_INST_TYPES) $(TARGETS) $(ADD_INST_DIRS) \ |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
42 $(USER)@wald.intevation.org:/mxd2map/htdocs/ |
155 | 43 |
44 install: all | |
45 mkdir -p $(INSTALL_DIR) ;\ | |
46 cp -uf $(TARGETS) $(INSTALL_DIR) ;\ | |
47 cp -uf $(ADD_INST_TYPES) $(INSTALL_DIR) | |
48 cp -urf *$(ADD_INST_DIRS) $(INSTALL_DIR) | |
156
67d395ac5509
updated buildhtml to hg.
Emanuel Schuetze <emanuel@intevation.de>
parents:
155
diff
changeset
|
49 find $(INSTALL_DIR) -name ".hg" | xargs rm -rf |
155 | 50 |
51 tar: install | |
52 echo $(CURDIR) | |
162
dd4bb5869f86
replaced mapWOC with MXD2map
Stephan Holl <stephan.holl@intevation.de>
parents:
159
diff
changeset
|
53 ( cd $(INSTALL_DIR) ; tar -czv -f $(CURDIR)/www.mxd2map.org.tar.gz . ) |