]> git.donarmstrong.com Git - lilypond.git/blob - flower/Makefile
release: 0.0.34
[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) $(CXXFLAGS) -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         doc++ -p -d docxx $(hh) $(cc) $(templatecc) $(inl)
23
24 dist:
25         -mkdir $(DDIR)
26         ln $(DFILES) $(DDIR)/
27         tar cfz $(DNAME).tar.gz $(DDIR)/*
28         rm -rf $(DDIR)/
29
30 TAGS: $(ALLSOURCES)
31         etags -CT $(inl) $(cc) $(hh)
32