summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorpancake <pancake@dazo>2007-04-20 18:20:22 +0200
committerpancake <pancake@dazo>2007-04-20 18:20:22 +0200
commitb1d0ce2848a79664374f802954b1e4390b11da6d (patch)
tree4f465ca029401b9afef0372ff1e0c60a43d87b40 /src/Makefile
download0xFFFF-b1d0ce2848a79664374f802954b1e4390b11da6d.tar.bz2
* Initial commit of 0xFFFF.0.1
This tree contains the same as the 0.1 tarball
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..ec48974
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,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}