mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-04-20 20:47:18 +00:00
28 lines
311 B
Makefile
28 lines
311 B
Makefile
BUILD_DIRS="build.*"
|
|
|
|
all: squashfs
|
|
|
|
system:
|
|
./scripts/image
|
|
|
|
release:
|
|
./scripts/image_release
|
|
|
|
squashfs:
|
|
./scripts/image_squashfs
|
|
|
|
qemu:
|
|
./scripts/image_qemu
|
|
|
|
vmware:
|
|
./scripts/image_vmware
|
|
|
|
addons:
|
|
./scripts/image_addons
|
|
|
|
clean:
|
|
rm -rf $(BUILD_DIRS)
|
|
|
|
src-pkg:
|
|
tar cvjf sources.tar.bz2 sources .stamps
|