mirror of
https://github.com/libretro/Lakka.git
synced 2025-03-02 20:56:07 +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
|