summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorpixel <pixel>2003-09-10 16:00:01 +0000
committerpixel <pixel>2003-09-10 16:00:01 +0000
commitae612d5361b66b7bcbafae3f36d851f7624aaae6 (patch)
treee32f3b5b3cd8f7670123e50a202a804a7cc9c186 /Makefile
parent40e45d8948a8b5315c83886b5218543cafae0c4a (diff)
Starting adding mips stuff
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}