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
Opa, tinha me esquecido de colocar o plataform
[Projeto-PCG.git]
/
Makefile
blob
3613510c2ee41ee9fd4ad40e0c4fac72708cd9e0
1
OBJS
=
\
2
main.o \
3
geometry.o \
4
luaenv.o \
5
player.o \
6
game.o \
7
timer.o \
8
controle.o \
9
thing.o \
10
gravity.o \
11
mapa.o \
12
plataform.o \
13
controleteclado.o \
14
weapon.o \
15
16
SRCS
= $(
OBJS
,
.o
=
.
cpp
)
17
18
all
:
a.out
19
20
a.out
: $(
OBJS
)
21
g
++ -
lSDL
-
lGL
$(
OBJS
)
liblua.a
22
23
.
cpp
.o
:
24
g
++ -
c
$<
25
26
clean
:
27
rm
-
f a.out
*
.o
28
29
bruno
: $(
OBJS
)
30
g
++ -
lSDL
-
lGL
-
llua5.1
$(
OBJS
)