makefile 411 B

12345678910111213141516171819
  1. #import all shared make vars
  2. PRAWNOS_ROOT := $(shell git rev-parse --show-toplevel)
  3. include $(PRAWNOS_ROOT)/scripts/common.mk
  4. VERSION := $(shell cd src/; dpkg-parsechangelog --show-field Version)
  5. font-source-code-pro_$(VERSION)_all.deb:
  6. @echo Building $@
  7. cd src/; debuild -us -uc
  8. .PHONY: clean
  9. clean:
  10. rm -rf *.upload
  11. rm -rf *.deb
  12. rm -rf *.changes
  13. .PHONY: upload
  14. upload:
  15. dput deb.prawnos.com *.changes