]> git.donarmstrong.com Git - lilypond.git/blob - flower/Makefile
release: 0.0.30
[lilypond.git] / flower / Makefile
1 include Variables.make
2
3 $(staticlib): $(obs) fversion.hh
4         $(AR) cr libflower.a $(obs)
5
6 include depend
7
8 depend: Sources.make
9         $(CXX) -MM $(cc) > depend
10
11 clean:
12         rm -f $(obs) $(staticlib) fversion.hh
13
14 realclean: clean
15         rm -f depend
16
17 fversion.hh: Variables.make make_version
18         make_version $(MAJVER) $(MINVER) $(PATCHLEVEL) "$(CXX) `$(CXXVER)`" > $@
19
20 .PHONY: docxx
21 docxx: $(hh) $(cc) $(templatecc) $(inl)
22         -mkdir docxx
23         doc++ -p -d docxx $(hh) $(cc) $(templatecc) $(inl)
24
25 dist:
26         -mkdir $(DDIR)
27         ln $(DFILES) $(DDIR)/
28         tar cfz $(DNAME).tar.gz $(DDIR)/*
29         rm -rf $(DDIR)/
30
31 TAGS: $(ALLSOURCES)
32         etags -CT $(inl) $(cc) $(hh)
33