Check for already compressed fnames
[sfinx.git] / Makefile
blobbd862b25a78c9d500475ce23bf5399b6e84d223e
2 # Sfinx makefile
5 DIRS = sfinx faraon
7 .PHONY: sfinx faraon
9 all: sfinx faraon
11 dist: clean dep all
13 depend dep:
14 @echo Making depend.
15 @for dir in $(DIRS); do\
16 (cd $$dir;$(MAKE) dep);\
17 done
19 sfinx:
20 (cd sfinx; $(MAKE))
21 faraon:
22 (cd faraon; $(MAKE))
24 clean:
25 @echo Cleaning garbage.
26 @for dir in $(DIRS); do\
27 (cd $$dir;$(MAKE) clean);\
28 done
29 @rm -rf *out DEAD* errorlog.make
31 push:
32 @git-push ssh://git@sfinx.od.ua/home/git/Harbour/sfinx
34 pull:
35 @git-pull ssh://git@sfinx.od.ua/home/git/Harbour/sfinx
37 initdb:
38 @rm -f /usr/local/sfinx/sfinx.fdb
39 @isql -q -i ./scripts/db.sql
40 @echo Sfinx database initialized
42 commit:
43 @git-diff
44 @git-commit -a
45 dcp: commit push
47 todo:
48 @setterm -foreground red
49 @cat TODO
50 @echo
51 bugs:
52 @setterm -foreground red
53 @cat doc/BUGS
54 @echo
56 ###