376263d925
git-svn-id: svn://localhost/ardour2/branches/3.0@3384 d708f5d6-7413-0410-9779-e7cbd77b26cf
21 lines
316 B
Makefile
21 lines
316 B
Makefile
all:
|
|
true
|
|
#make sconsi
|
|
#./build-tmp.sh
|
|
|
|
scons:
|
|
scons DEBUG=1 DIST_TARGET=i686 -j 3
|
|
|
|
sconsi:
|
|
scons --implicit-deps-unchanged DEBUG=1 DIST_TARGET=i686 -j 3
|
|
|
|
cscope: cscope.out
|
|
|
|
cscope.out: cscope.files
|
|
cscope -b
|
|
|
|
cscope.files:
|
|
find . -name '*.[ch]' -o -name '*.cc' > $@
|
|
|
|
.PHONY: all cscope.files sconsi cscope
|