mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-23 16:30:13 +00:00
25 lines
301 B
Makefile
25 lines
301 B
Makefile
BUILD_DIRS=build.*
|
|
|
|
all: release
|
|
|
|
system:
|
|
./scripts/image
|
|
|
|
release:
|
|
./scripts/image release
|
|
|
|
image:
|
|
./scripts/image mkimage
|
|
|
|
noobs:
|
|
./scripts/image noobs
|
|
|
|
clean:
|
|
rm -rf $(BUILD_DIRS)/* $(BUILD_DIRS)/.stamps
|
|
|
|
distclean:
|
|
rm -rf ./.ccache ./$(BUILD_DIRS)
|
|
|
|
src-pkg:
|
|
tar cvJf sources.tar.xz sources
|