summaryrefslogtreecommitdiff
path: root/MegamanX5/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-24 08:19:36 +0000
committerPixel <Pixel>2002-06-24 08:19:36 +0000
commit4b85655d670c36b9c6b13fec8196e008de67e9ce (patch)
tree7257573f7759f63323de75553c7f503b9d248060 /MegamanX5/Makefile
parentd0f485b19a53ce3c7032066096305dbecba536fe (diff)
Whoups...
Diffstat (limited to 'MegamanX5/Makefile')
-rwxr-xr-xMegamanX5/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/MegamanX5/Makefile b/MegamanX5/Makefile
new file mode 100755
index 0000000..80db8f8
--- /dev/null
+++ b/MegamanX5/Makefile
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I..
+CXX=g++
+
+TARGET = unarc
+
+all: ${TARGET}
+
+unarc: unarc.o ../fileutils.h ../fileutils.cpp ../generic.h ../generic.cpp Makefile
+ ${CXX} ${LDFLAGS} unarc.o ../fileutils.o ../generic.o -o unarc
+
+clean:
+ rm -f *.o ${TARGET} compil.c
+