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
Acho que consegui corrigi a ponta das armas
[Projeto-PCG.git]
/
Makefile
blob
d3eb93a4c0253586c3217f25f9f521cc5b31dcce
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
controlewii.o \
22
collision.o \
23
enemy.o \
24
25
26
SRCS
= $(
OBJS
,
.o
=
.
cpp
)
27
28
all
:
a.out
29
30
a.out
: $(
OBJS
)
31
g
++ -
lSDL
-
lGL
-
lcwiid
$(
OBJS
)
liblua.a
32
33
.
cpp
.o
:
34
g
++ -
c
$<
35
36
clean
:
37
rm
-
f a.out
*
.o
38
39
ubuntu
: $(
OBJS
)
40
g
++ -
lSDL
-
lGL
-
llua5.1
-
lcwiid
$(
OBJS
)