-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
71 lines (67 loc) · 1.48 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
WARN = -pedantic -Wall -Wmissing-prototypes -Wmissing-declarations -Wsign-compare
OPT = -O2 -funroll-loops
CC = gcc -I. -std=c89 $(OPT) $(WARN) -g
O_FILES = anim/sysanim.o \
base/base.o \
cdrom/cdrom.o \
data/dataappl.o \
data/database.o \
data/datacalc.o \
data/relation.o \
dialog/dialog.o \
dialog/talkappl.o \
disk/disk.o \
error/error.o \
gameplay/gp_app.o \
gameplay/gp.o \
gameplay/loadsave.o \
gameplay/tcreques.o \
gfx/gfx.o \
gfx/gfxnch4.o \
inphdl/inphdl.o \
landscap/access.o \
landscap/landscap.o \
landscap/hardware.o \
landscap/init.o \
landscap/raster.o \
landscap/scroll.o \
landscap/spot.o \
list/list.o \
living/bob.o \
living/living.o \
memory/memory.o \
organisa/organisa.o \
planing/graphics.o \
planing/guards.o \
planing/io.o \
planing/main.o \
planing/planer.o \
planing/player.o \
planing/prepare.o \
planing/support.o \
planing/system.o \
planing/sync.o \
present/present.o \
present/interac.o \
random/random.o \
scenes/cars.o \
scenes/dealer.o \
scenes/done.o \
scenes/evidence.o \
scenes/inside.o \
scenes/invest.o \
scenes/scenes.o \
scenes/tools.o \
sound/buffer.o \
sound/fmopl.o \
sound/fx.o \
sound/newsound.o \
sound/hsc.o \
story/story.o \
text/text.o
derclou: $(O_FILES)
$(CC) -o $@ */*.o `sdl2-config --libs` -lm
.c.o:
$(CC) `sdl2-config --cflags` -c -o $@ $<
clean:
rm -f *~ *.o */*.o derclou