summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHans Fugal <hans@fugal.net>2006-08-12 21:50:33 +0000
committerHans Fugal <hans@fugal.net>2006-08-12 21:50:33 +0000
commit46af8c0211a9b7a00fbb9e6cfee362d752399157 (patch)
treed0e38d3729382b031c4ce7f48e86d5bcae105fd2 /Makefile
parent57f7f71ce3c1acae5a50e903d2dd472743df8043 (diff)
The cscope and scons front-end makefile.
git-svn-id: svn://localhost/ardour2/branches/undo@798 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000..1a39c6d179
--- /dev/null
+++ b/Makefile
@@ -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