diff options
Diffstat (limited to 'MegamanX5/Makefile')
-rwxr-xr-x | MegamanX5/Makefile | 15 |
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 + |