summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorpancake <pancake@dazo>2007-06-12 23:43:35 +0200
committerpancake <pancake@dazo>2007-06-12 23:43:35 +0200
commited3cb1d3f8f21a067b30a9d6695515a791895c74 (patch)
tree870f7a4117da346d0a66cc4d497451fa93c417e6 /Makefile
parentea97ac427eb9ff7ec48baf3a5ab7cc293fc34b70 (diff)
download0xFFFF-ed3cb1d3f8f21a067b30a9d6695515a791895c74.tar.bz2
* Finally integrate libusb in Makefiles. Use 'allusb' target to build a 0xFFFF binary without library dependencies (libusb)
* Add 'static' makefile target for building a statically linked 0xFFFF * Documentate all makefile targets in INSTALL
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7dafa38..2d0869b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,17 @@
PREFIX?=/usr/local
-all:
+all: logot
cd src && ${MAKE} all
+
+static: logot
+ cd libusb && ${MAKE} all
+ cd src && ${MAKE} static
+
+allusb: logot
+ cd libusb && ${MAKE} all
+ cd src && ${MAKE} allusb
+
+logot:
cd logotool && ${MAKE} all
clean: