blob: 09994708b541e76132d2665afb70dfdf2bfc3f36 (
plain)
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
|
#!/usr/bin/make -f
CPPFLAGS=-Wall -g -O3 -mcpu=i686 -Iincludes `sdl-config --cflags` -DHAVE_ZLIB `baltisot-config --cflags` `lua-config --include`
LDFLAGS=-lz `sdl-config --libs` `baltisot-config --libs`
CDTOOL_LDFLAGS=`baltisot-config --libs`
CXX=g++
#SUBDIRS = psxdev lib Xenogears VP MegamanX5
SUBDIRS = psxdev lib PE
TARGET = lzss dlzss cd-tool str-player crypto-search bgrep tile-convert
all: subdirs ${TARGET}
subdirs:
for d in ${SUBDIRS} ; do make -C $$d || exit -1 ; done
lzss: includes/lzss.h lzss-main.o lib/lib.a Makefile
${CXX} -DLZSS_MAIN lzss-main.o lib/lib.a -o lzss ${LDFLAGS}
dlzss: lzss Makefile
ln -fs lzss dlzss
yazedc: yazedc-main.o lib/lib.a Makefile
${CXX} yazedc-main.o lib/lib.a -DYAZEDC_MAIN -o yazedc ${LDFLAGS}
cd-tool: includes/cdutils.h includes/yazedc.h cd-tool.o lib/lib.a Makefile
${CXX} cd-tool.o lib/lib.a -o cd-tool ${CDTOOL_LDFLAGS}
dte-tool: includes/dte.h dtemain.o lib/lib.a Makefile
${CXX} dtemain.o lib/lib.a -o dte-tool ${LDFLAGS}
str-player: str-player.o includes/cdutils.h includes/yazedc.h lib/lib.a psxdev/psxdev.a Makefile
${CXX} str-player.o psxdev/psxdev.a lib/lib.a -o str-player ${LDFLAGS}
crypto-search: crypto-search.o lib/lib.a Makefile
${CXX} crypto-search.o lib/lib.a -o crypto-search ${LDFLAGS}
mipspoke: mipspoke.o lib/lib.a Makefile
${CXX} mipspoke.o lib/lib.a -o mipspoke ${LDFLAGS}
bgrep: bgrep.o Makefile
${CXX} bgrep.o -o bgrep ${LDFLAGS}
tile-convert: tile-convert.o Makefile
${CXX} tile-convert.o -o tile-convert ${LDFLAGS}
clean:
for d in ${SUBDIRS} ; do make -C $$d clean || exit -1 ; done
rm -f *.o ${TARGET} compil.c
|