8 lines
166 B
Makefile
8 lines
166 B
Makefile
|
|
||
|
SRC := $(shell find src -type f | tail -n+2)
|
||
|
SRC_REL := $(shell cd src && find ./ -type f)
|
||
|
|
||
|
KoboRoot.tgz: $(SRC)
|
||
|
tar cvzf $@ -C src $(SRC_REL) --owner=0 --group=0
|
||
|
|