Files
mop3/make/dist.mk
kamkow1 02e77b5c90
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m36s
CE interactive shell
2026-02-21 22:14:16 +01:00

10 lines
179 B
Makefile

exe := $(foreach d,$(apps),$(wildcard $(d)/$(d)))
extra := LICENSE.txt
all_dist: mop3dist.tar
mop3dist.tar:
tar -cf $@ --transform='s|.*/||' $(exe) $(extra)
.PHONY: all_dist