summaryrefslogtreecommitdiff
path: root/Makefile
blob: 78ceca161ce6587fed4efa4e2407b1d8f739331c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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