Files
mop3/make/dist.mk
kamkow1 b9e8a8bf1d
All checks were successful
Build documentation / build-and-deploy (push) Successful in 1m53s
Integrate LZ4 library, compress the ramdisk
2026-03-07 02:54:26 +01:00

13 lines
301 B
Makefile

exe := $(foreach d,$(apps),$(wildcard $(d)/$(d)))
extra := LICENSE.txt
all_dist: mop3dist.tar.lz4
mop3dist.tar.lz4:
tar -cf mop3dist.tar --transform='s|.*/||' $(exe) $(extra)
./lz4/lz4 -12 -f -BD mop3dist.tar mop3dist.tar.lz4
rm mop3dist.tar
./lz4/lz4 --list mop3dist.tar.lz4
.PHONY: all_dist