repo.or.cz
/
psg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove power displaying from application.cpp
[psg.git]
/
Makefile
blob
14d25b324054717547b8fe3827e9c32f924416b5
1
2
SUBDIRS
=
src bin doc
3
4
bin
/
psg
:
src_compiled
5
cp src
/
psg bin
/
psg
6
7
src_compiled
:
8
@cd src
&& $(
MAKE
)
psg
9
10
all
:
bin
/
psg
11
12
generate_doc
:
bin
/
psg
13
doxygen
14
15
doc-pdf
:
generate_doc
16
@cd doc
/
latex
&& $(
MAKE
)
all
&&
cp refman.pdf ..
/
refman.pdf
17
18
$(
SUBDIRS
:%=%/
__clean__
):
19
@cd
`dirname $@`
&& $(
MAKE
)
clean
20
21
clean
: $(
SUBDIRS
:%=%/
__clean__
)
22
rm
-
f psg-
*
.
tar
.bz2
23
24
run
:
bin
/
psg
25
cd bin
&&
.
/
psg
26
27
distclean
:
clean
28
29
snapshot
:
distclean
30
tar
-
cjf psg-
$(
cat VERSION
)
.
tar
.bz2
*