summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7420f0b..323fe2b 100755
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
#!/usr/bin/make -f
-CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -Iincludes `sdl-config --cflags` -DHAVE_ZLIB `baltisot-config --cflags`
+CPPFLAGS=-Wall -g -O3 -mcpu=i686 -Iincludes `sdl-config --cflags` -DHAVE_ZLIB `baltisot-config --cflags`
LDFLAGS=-lz `sdl-config --libs` `baltisot-config --libs`
CXX=g++
SUBDIRS = psxdev lib Xenogears VP MegamanX5
-TARGET = lzss dlzss cd-tool str-player crypto-search bgrep tile-convert
+TARGET = lzss dlzss cd-tool str-player crypto-search bgrep tile-convert mipspoke
all: subdirs ${TARGET}
@@ -33,6 +33,9 @@ str-player: str-player.o includes/cdutils.h includes/yazedc.h lib/lib.a psxdev/p
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}