summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorpancake <pancake@dazo>2007-05-01 15:01:23 +0200
committerpancake <pancake@dazo>2007-05-01 15:01:23 +0200
commitd0f9d78335c0a4b816a1b7eda25a3513689f02b5 (patch)
tree4aacb0ff8e3e97ad7687ae615ea7bac0b8f564c7 /src/Makefile
parent3e13254858c69e76c86ba19aa9cb6e24454b7555 (diff)
download0xFFFF-d0f9d78335c0a4b816a1b7eda25a3513689f02b5.tar.bz2
* Move usb-dev related code to devices.c from main.c
* Create a root Makefile to build the flasher, logotool and install * Clean some warning messages
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index f88d138..71c8396 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,10 +1,10 @@
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
+OBJ+=hash.o fpid.o query.o pieces.o utils.o devices.o
BIN=0xFFFF
CFLAGS+=-DVERSION=\"${VERSION}\" -Wall -g
-main: ${OBJ}
+all: ${OBJ}
${CC} ${LDFLAGS} -o ${BIN} ${OBJ} -lusb
clean: