summaryrefslogtreecommitdiffstats
path: root/src/Makefile
blob: f88d1389445ee449b728c789a2aeacd68a2d7b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
VERSION=0.2
OBJ=main.o fiasco.o hexdump.o dump.o flash.o
OBJ+=hash.o fpid.o query.o pieces.o utils.o
BIN=0xFFFF
CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -g

main: ${OBJ}
	${CC} ${LDFLAGS} -o ${BIN} ${OBJ} -lusb

clean:
	-rm -f ${OBJ} ${BIN}