repo.or.cz
/
rofl0r-financial-time-machine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
import recovered chunk of validity_check() func
[rofl0r-financial-time-machine.git]
/
Makefile
blob
4a02cc9d6b9d50b6efed924e8d3fadaac6f58ea8
1
PROG
=
ftm
2
SRCS
=$(
sort
$(
wildcard
*
.c
))
3
OBJS
=$(
SRCS
:
.c
=
.o
)
4
5
CFLAGS
=-
Wall
-
g3
-
O0
6
7
EZSDL_PATH
=
.
8
INC
=-
I
$(
EZSDL_PATH
)
9
10
-
include
config.mak
11
12
all
: $(
PROG
)
13
14
clean
:
15
rm
-
f
$(
OBJS
) $(
PROG
)
16
17
$(
PROG
): $(
OBJS
)
18
$(
CC
) $(
CFLAGS
) $(
LDFLAGS
) -
lSDL
-
o
$
@
$
^
19
20
%
.o
: %
.c
$(
EZSDL_PATH
)/
ezsdl.h
21
$(
CC
) $(
CPPFLAGS
) $(
INC
) $(
CFLAGS
) -
c
-
o
$
@
$<