From: Uwe Hermann Date: Mon, 23 Jul 2012 12:55:04 +0000 (+0200) Subject: Don't ship the .git/ directory in the tarball. X-Git-Tag: sigrok-firmware-fx2lafw-0.1.0~5 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=0bac7de529ed84f6b2236e41f435c5a4cd86ff95;p=sigrok-firmware-fx2lafw.git Don't ship the .git/ directory in the tarball. --- diff --git a/Makefile b/Makefile index 22d0a691..72a97929 100644 --- a/Makefile +++ b/Makefile @@ -32,26 +32,27 @@ 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 .. + @git clone $(REPO) $(TARBALLDIR) + @cd $(TARBALLDIR) && $(MAKE) ChangeLog && cd .. + @rm -rf $(TARBALLDIR)/.git @tar -c -z -f $(TARBALLDIR).tar.gz $(TARBALLDIR) @rm -rf $(TARBALLDIR) @@ -69,7 +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 + @$(MAKE) -C fx2lib clean .PHONY: saleae-logic cwav-usbeeax cwav-usbeesx cypress-fx2 braintechnology-usb-lps