Tachtig: decode/dump Wii save files
[svpe-tools.git] / Makefile
blob687f17cb75cb6b468e39246eb6b6ca924ee9851a
1 CC = gcc
2 CFLAGS = -DLARGE_FILES -D_FILE_OFFSET_BITS=64 -Wall -W -O2
3 LDFLAGS = -lcrypto
5 LIB = tools.o bn.o ec.o
7 all: tachtig negentig tpl
9 tachtig: tachtig.o $(LIB)
11 negentig: negentig.o $(LIB)
13 tpl: tpl.o
15 *.o: *.c *.h Makefile
17 clean:
18 -rm -f tachtig negentig tpl
19 -rm -f tachtig.o negentig.o tpl.o
20 -rm -f $(LIB)