repo.or.cz
/
Projeto-PCG.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Criada classe Controle.
[Projeto-PCG.git]
/
Makefile
blob
cc670123c90abf4a133e7b807751fc5a91252065
1
OBJS
=
\
2
main.o \
3
geometry.o \
4
plataformas.o \
5
luaenv.o \
6
player.o \
7
game.o \
8
timer.o \
9
controle.o \
10
11
12
SRCS
= $(
OBJS
,
.o
=
.
cpp
)
13
14
all
:
a.out
15
16
a.out
: $(
OBJS
)
17
g
++ -
lSDL
-
lGL
$(
OBJS
)
liblua.a
18
19
.
cpp
.o
:
20
g
++ -
c
$<
21
22
clean
:
23
rm
a.out
*
.o