]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blobdiff - Makefile
NEWS: Add today's date as release date for 0.1.0.
[sigrok-firmware-fx2lafw.git] / Makefile
index b207a42d3ce332efdd7ab6456ea2528e00166cb7..72a979296eb1c94b85b1f9234163b382f96c29e6 100644 (file)
--- a/Makefile
+++ b/Makefile
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
+# sigrok-firmware-fx2lafw package/tarball version number.
+VERSION = "0.1.0"
+
 DESTDIR ?= /usr/local/share/sigrok-firmware
 
+REPO = git://sigrok.git.sourceforge.net/gitroot/sigrok/fx2lafw
+
+TARBALLDIR = sigrok-firmware-fx2lafw-$(VERSION)
+
 all: build-all
 
 build-all: saleae-logic cwav-usbeeax cwav-usbeesx cypress-fx2 braintechnology-usb-lps
 
 saleae-logic:
-       $(MAKE) -C hw/saleae-logic
+       @$(MAKE) -C hw/saleae-logic
 
 cwav-usbeeax:
-       $(MAKE) -C hw/cwav-usbeeax
+       @$(MAKE) -C hw/cwav-usbeeax
 
 cwav-usbeesx:
-       $(MAKE) -C hw/cwav-usbeesx
+       @$(MAKE) -C hw/cwav-usbeesx
 
 cypress-fx2:
-       $(MAKE) -C hw/cypress-fx2
+       @$(MAKE) -C hw/cypress-fx2
 
 braintechnology-usb-lps:
-       $(MAKE) -C hw/braintechnology-usb-lps
+       @$(MAKE) -C hw/braintechnology-usb-lps
 
 ChangeLog:
        @git log > ChangeLog || touch ChangeLog
 
+dist:
+       @git clone $(REPO) $(TARBALLDIR)
+       @cd $(TARBALLDIR) && $(MAKE) ChangeLog && cd ..
+       @rm -rf $(TARBALLDIR)/.git
+       @tar -c -z -f $(TARBALLDIR).tar.gz $(TARBALLDIR)
+       @rm -rf $(TARBALLDIR)
+
 install: build-all
        @mkdir -p $(DESTDIR)
        @cp hw/saleae-logic/build/*.fw $(DESTDIR)
@@ -56,6 +70,7 @@ clean:
        @rm -rf hw/cwav-usbeesx/build
        @rm -rf hw/cypress-fx2/build
        @rm -rf hw/braintechnology-usb-lps/build
+       @$(MAKE) -C fx2lib clean
 
 .PHONY: saleae-logic cwav-usbeeax cwav-usbeesx cypress-fx2 braintechnology-usb-lps