Prepare deployment: Build basic deb packages

This commit is contained in:
aldrin 2021-04-16 09:23:01 +02:00
parent 87d72be3fa
commit dde639f3d1
17 changed files with 280 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
DIR_BUILD ?= build
.PHONY: default-target
default-target:
@true
.PHONY: clean
clean:
rm -rf "$(DIR_BUILD)"
include make.d/assets.mk
include make.d/deb.mk
include make.d/release.mk