summaryrefslogtreecommitdiff
path: root/MegamanX5/Makefile
blob: 74bec9eb06e61472587c3b629e6b5ba87c7b3db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make -f

CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes
CXX=g++

TARGET = unarc

all: ${TARGET}

unarc: unarc.o ../includes/fileutils.h ../includes/generic.h Makefile
	${CXX} ${LDFLAGS} unarc.o ../generic/generic.a -o unarc

clean:
	rm -f *.o ${TARGET} compil.c