]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/generic-targets.make
1dc6601d6144f5f89838976bb3d7bc5c19fdfe1b
[lilypond.git] / stepmake / stepmake / generic-targets.make
1 .PHONY : all clean config default diff dist doc exe help html lib TAGS\
2          po
3
4 all:     default
5         $(LOOP)
6
7 man:
8         $(LOOP)
9
10 # be careful about deletion.
11 clean: local-clean
12         -rm -f $(outdir)/*
13         $(LOOP)
14
15 ifneq ($(strip $(depth)),.)
16 dist:
17         make -C $(depth) dist
18 endif
19
20 distclean: clean 
21         $(LOOP)
22         $(MAKE) local-distclean
23
24 maintainerclean: 
25         $(LOOP)
26         $(MAKE) local-maintainerclean
27         $(MAKE) local-distclean
28
29
30 # configure:
31 #
32 config:
33         ./$(depth)/configure
34 #
35
36
37 # target help:
38 #
39 generic-help:
40         @echo -e "\
41 Makefile for $(PACKAGE_NAME) $(TOPLEVEL_VERSION)\n\
42 Usage: make ["VARIABLE=value"]... [TARGET]\n\
43 \n\
44 Targets:\n"
45
46 # urg
47 webdir = $(local_package_docdir)
48 help: generic-help local-help
49         @echo -e "\
50   all         update everything\n\
51   clean       remove all genated stuff in $(outdir)\n\
52   check       run selftest\n\
53   default     same as the empty target\n\
54   exe         update all executables\n\
55   help        this help\n\
56   install     install programs and data (prefix=$(prefix))\n\
57   lib         update all libraries\n\
58   web         update website in out-www\n\
59   web-install install website documentation in (webdir=$(webdir))\n\
60   web-clean   clean out-www\n\
61   TAGS        genarate tagfiles\n\
62 \n\
63 Make may be invoked from any subdirectory\n\
64 Note that all commands recurse into SUBDIRS;\n\
65 prepend \`local-' to do only cwd, eg: local-clean\n\
66 "\
67
68 local-help:
69
70 local-dist: $(DIST_FILES) $(OUT_DIST_FILES) $(NON_ESSENTIAL_DIST_FILES)
71         mkdir -p $(distdir)/$(localdir)
72         $(LN) $(DIST_FILES) $(distdir)/$(localdir)
73
74         case "$(NON_ESSENTIAL_DIST_FILES)x" in x) ;; *) \
75                 $(LN) $(NON_ESSENTIAL_DIST_FILES) $(distdir)/$(localdir);; \
76         esac
77
78         case "$(OUT_DIST_FILES)x" in x) ;; *) \
79                 mkdir -p $(distdir)/$(localdir)/$(outdir); \
80                 $(LN) $(OUT_DIST_FILES) $(distdir)/$(localdir)/$(outdir);; \
81         esac
82 #       $(foreach i, $(SUBDIRS), $(MAKE) distdir=../$(distdir) localdir=$(localdir)/$(i) -C $(i) local-dist &&) true
83 # absolute for installed stepmake
84         $(foreach i, $(SUBDIRS), $(MAKE) topdir=$(topdir) distdir=$(distdir) localdir=$(localdir)/$(notdir $(i)) -C $(i) local-dist &&) true
85
86
87
88 html: $(HTML_FILES)
89
90 TAGS:
91         -if [ "$(TAGS_FILES)" != "" ]; then \
92                 etags $(ETAGS_FLAGS) $(TAGS_FILES) || \
93                 ctags $(CTAGS_FLAGS) ".h.hh.tcc.icc" $(TAGS_FILES) $(ERROR_LOG); \
94         fi
95
96         $(LOOP)
97
98 $(outdir)/version.hh: $(config_make)
99         $(PYTHON) $(step-bindir)/make-version.py PACKAGE_NAME=$(PACKAGE_NAME) \
100                 MAJOR_VERSION=$(MAJOR_VERSION) \
101                 MINOR_VERSION=$(MINOR_VERSION) \
102                 PATCH_LEVEL=$(PATCH_LEVEL) \
103                 MY_PATCH_LEVEL=$(MY_PATCH_LEVEL) \
104                 > $@
105
106 $(outdir)/config.h: $(config_h)
107         cp -p $< $@
108
109 configure: configure.in aclocal.m4
110         NOCONFIGURE=yes $(srcdir)/autogen.sh
111         chmod +x configure
112
113 local-clean:
114
115 local-distclean:
116
117 local-maintainerclean:
118
119 install-strip:
120         $(MAKE) INSTALL="$(INSTALL) -s" install
121
122 ifneq ($(strip $(depth)),.)
123 final-install:
124         $(LOOP)
125
126 install: local-install
127         $(LOOP)
128 endif
129
130 local-install:
131
132 uninstall: local-uninstall
133         $(LOOP)
134
135 local-uninstall:
136
137 installextradoc:
138         -$(INSTALL) -d $(prefix)/doc/$(package)
139         $(foreach i, $(EXTRA_DOC_FILES),\
140                 cp -r $(i) $(prefix)/doc/$(package) &&) true
141
142 include $(outdir)/dummy.dep $(DEP_FILES) # expect a warning here
143
144 $(outdir)/dummy.dep:
145         -mkdir -p $(outdir)
146         touch $(outdir)/dummy.dep
147
148
149 check: local-check
150         $(LOOP)
151
152 local-check:
153
154 # ugh.  ugh ugh ugh
155 $(config_make): $(topdir)/configure $(topdir)/VERSION
156         @echo "************************************************************"
157         @echo "configure changed! You should probably reconfigure manually."
158         @echo "************************************************************"
159         (cd $(builddir); ./config.status)
160         touch $@                # do something for multiple simultaneous configs.
161
162
163 deb:
164         $(MAKE) -C $(depth)/debian
165         cd $(depth) && debuild
166
167 diff:
168         $(PYTHON) $(step-bindir)/package-diff.py  --outdir=$(topdir)/$(outdir) --package=$(topdir) $(makeflags)
169         -ln -f $(depth)/$(outdir)/$(distname).diff.gz $(patch-dir)
170
171 release: 
172         $(PYTHON) $(step-bindir)/release.py --outdir=$(topdir)/$(outdir) --package=$(topdir)
173
174
175 ################ website.
176
177 local-WWW:
178 local-WWW-post:
179 web-install:
180
181 WWW: local-WWW
182         $(LOOP)
183
184 WWW-post: local-WWW-post
185         $(LOOP)
186
187 web: 
188         $(MAKE) out=www WWW
189         $(MAKE) out=www WWW-post