20 lines
411 B
Makefile
20 lines
411 B
Makefile
#import all shared make vars
|
|
PRAWNOS_ROOT := $(shell git rev-parse --show-toplevel)
|
|
include $(PRAWNOS_ROOT)/scripts/common.mk
|
|
|
|
VERSION := $(shell cd src/; dpkg-parsechangelog --show-field Version)
|
|
|
|
font-source-code-pro_$(VERSION)_all.deb:
|
|
@echo Building $@
|
|
cd src/; debuild -us -uc
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *.upload
|
|
rm -rf *.deb
|
|
rm -rf *.changes
|
|
|
|
.PHONY: upload
|
|
upload:
|
|
dput deb.prawnos.com *.changes
|