diff options
author | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-06-20 14:08:16 +0000 |
commit | 30f218eb43414407ff8fad136ac1b14d419c29b5 (patch) | |
tree | 1e4c1dd71272f861daf90baced75fa604cdbf168 /MegamanX5 | |
parent | 7fc9c6dfbef57331c8b5eae0943f3fe95f2e63e1 (diff) |
Compiling again
Diffstat (limited to 'MegamanX5')
-rwxr-xr-x | MegamanX5/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MegamanX5/Makefile b/MegamanX5/Makefile index 831126c..2fb326d 100755 --- a/MegamanX5/Makefile +++ b/MegamanX5/Makefile @@ -1,16 +1,16 @@ #!/usr/bin/make -f -CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -I../includes `baltisot-config --cflags` CXX=g++ LIBS=-lz -LDFLAGS=${LIBS} +LDFLAGS=${LIBS} `baltisot-config --libs` TARGET = unarc all: ${TARGET} -unarc: unarc.o ../includes/generic.h Makefile - ${CXX} ${LDFLAGS} unarc.o ../generic/generic.a -o unarc +unarc: unarc.o Makefile + ${CXX} ${LDFLAGS} unarc.o -o unarc clean: rm -f *.o ${TARGET} compil.c |