summaryrefslogtreecommitdiff
path: root/MegamanX5/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-09-27 12:17:57 +0000
committerPixel <Pixel>2002-09-27 12:17:57 +0000
commitbfa5de7eccf4604ff8217f619e9685a09e80d545 (patch)
treea5be5de750ac611145f459a09bda902c3dbc1a70 /MegamanX5/Makefile
parent60c1003845035ad4cd0e9ea50862bad7626faf0e (diff)
The week-without-the-network changes
Diffstat (limited to 'MegamanX5/Makefile')
-rwxr-xr-xMegamanX5/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/MegamanX5/Makefile b/MegamanX5/Makefile
index 74bec9e..831126c 100755
--- a/MegamanX5/Makefile
+++ b/MegamanX5/Makefile
@@ -2,12 +2,14 @@
CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes
CXX=g++
+LIBS=-lz
+LDFLAGS=${LIBS}
TARGET = unarc
all: ${TARGET}
-unarc: unarc.o ../includes/fileutils.h ../includes/generic.h Makefile
+unarc: unarc.o ../includes/generic.h Makefile
${CXX} ${LDFLAGS} unarc.o ../generic/generic.a -o unarc
clean: