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
Consertando sumiço misterioso do Makefile
[Projeto-PCG.git]
/
Makefile
blob
50107cee3e57ecf28decd9c8b65ddbff7e301e8b
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
weaponitem.o \
25
26
27
SRCS
= $(
OBJS
,
.o
=
.
cpp
)
28
29
all
:
a.out
30
31
a.out
: $(
OBJS
)
32
g
++ -
lSDL
-
lGL
-
lcwiid
$(
OBJS
)
liblua.a
33
34
.
cpp
.o
:
35
g
++ -
c
$<
36
37
clean
:
38
rm
-
f a.out
*
.o
39
40
ubuntu
: $(
OBJS
)
41
g
++ -
lSDL
-
lGL
-
llua5.1
-
lcwiid
$(
OBJS
)