blob: ec489741e9690d3dcbaf9d089eaf77ee307ca19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
VERSION=0.1
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}
|