mirror of
https://github.com/libretro/Lakka.git
synced 2024-11-30 11:30:33 +00:00
22 lines
279 B
Makefile
22 lines
279 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
|