initial commit of packs

This commit is contained in:
2024-07-26 23:28:20 +00:00
commit 44acd9b0b5
193 changed files with 4597 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
DISTRELATIVE := ./dist
DIST := $(shell realpath $(DISTRELATIVE))
export DIST
build: src
clean: src
src:
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: all src