mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
22 lines
285 B
Makefile
22 lines
285 B
Makefile
BUILD_DIRS=build.*
|
|
|
|
all: system
|
|
|
|
system:
|
|
./scripts/image
|
|
|
|
release:
|
|
./scripts/image release
|
|
|
|
image:
|
|
BUILD_IMAGE=yes ./scripts/image release
|
|
|
|
noobs:
|
|
./scripts/image noobs
|
|
|
|
clean:
|
|
rm -rf $(BUILD_DIRS)/* $(BUILD_DIRS)/.stamps
|
|
|
|
src-pkg:
|
|
tar cvjf sources.tar.bz2 sources .stamps
|