From ed3cb1d3f8f21a067b30a9d6695515a791895c74 Mon Sep 17 00:00:00 2001 From: pancake Date: Tue, 12 Jun 2007 23:43:35 +0200 Subject: * 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 --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Makefile') 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: -- cgit v1.2.3