The cscope and scons front-end makefile.

git-svn-id: svn://localhost/ardour2/branches/undo@798 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Fugal 2006-08-12 21:50:33 +00:00
parent 57f7f71ce3
commit 46af8c0211
1 changed files with 17 additions and 0 deletions

17
Makefile Normal file
View File

@ -0,0 +1,17 @@
all: scons cscope
scons:
scons
sconsi:
scons --implicit-deps-unchanged
cscope: cscope.out
cscope.out: cscope.files
cscope -b
cscope.files:
find . -name '*.[ch]' -o -name '*.cc' > $@
.PHONY: all cscope.files sconsi cscope