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

CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -I../includes `baltisot-config --cflags`
CXX=g++
LIBS=-lz
LDFLAGS=${LIBS} `baltisot-config --libs`

TARGET = unarc

all: ${TARGET}

unarc: unarc.o Makefile
	${CXX} ${LDFLAGS} unarc.o -o unarc

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