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
Tiro criado em lua, shotgun atira varios e outros efeitos legais possiveis agora
[Projeto-PCG.git]
/
Makefile
blob
56116ab1cecf4ef8211e47ec8b5e400cdfe1af19
1
OBJS
=
\
2
main.o \
3
geometry.o \
4
luaenv.o \
5
shooter.o \
6
player.o \
7
game.o \
8
timer.o \
9
controle.o \
10
thing.o \
11
gravity.o \
12
mapa.o \
13
platform.o \
14
controleteclado.o \
15
weapon.o \
16
maploader.o \
17
weaponmanager.o \
18
configmanager.o \
19
shot.o \
20
shotmanager.o \
21
22
23
SRCS
= $(
OBJS
,
.o
=
.
cpp
)
24
25
all
:
a.out
26
27
a.out
: $(
OBJS
)
28
g
++ -
lSDL
-
lGL
$(
OBJS
)
liblua.a
29
30
.
cpp
.o
:
31
g
++ -
c
$<
32
33
clean
:
34
rm
-
f a.out
*
.o
35
36
bruno
: $(
OBJS
)
37
g
++ -
lSDL
-
lGL
-
llua5.1
$(
OBJS
)