From 4b85655d670c36b9c6b13fec8196e008de67e9ce Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 24 Jun 2002 08:19:36 +0000 Subject: Whoups... --- MegamanX5/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 MegamanX5/Makefile (limited to 'MegamanX5/Makefile') 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 + -- cgit v1.2.3