repo.or.cz
/
riven-wahrk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added support for tBMP
[riven-wahrk.git]
/
src
/
Makefile
blob
10e951212486c90e829a4482591f09502447a740
1
2
3
CPPFLAGS
= -
ggdb
4
LDFLAGS
=
5
6
CPP
=
g
++
7
8
9
SRCS
=
Common.
cpp
\
10
File.
cpp
\
11
Main.
cpp
\
12
Mohawk.
cpp
\
13
Script.
cpp
\
14
Stack.
cpp
\
15
Tbmp.
cpp
16
17
OBJS
=
Common.o\
18
File.o\
19
Main.o\
20
Mohawk.o\
21
Script.o\
22
Stack.o\
23
Tbmp.o
24
25
26
all
:
riven-wahrk
27
28
$(
SRCS
):
29
$(
CPP
) $(
CPPFLAGS
) -
c
$*
.c
30
echo
31
32
33
riven-wahrk
: $(
OBJS
)
34
$(
CPP
) -
o
$
@
$(
OBJS
) $(
LDFLAGS
)
35
36
37
clean
:
38
rm
-
f riven-warhk
*
.o
39
40