mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
254822da91
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
38 lines
644 B
Makefile
38 lines
644 B
Makefile
# Makefile for kernel booter
|
|
SRCROOT = $(CURDIR)
|
|
# Reset default charset for GNUsed problems...
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
image iso: utils
|
|
@${SRCROOT}/makeiso
|
|
|
|
pkg installer:
|
|
@${SRCROOT}/makepkg
|
|
|
|
zip archive:
|
|
@${SRCROOT}/makeV2
|
|
|
|
slimpkg1:
|
|
@${SRCROOT}/makepkg --nothemes
|
|
|
|
slimpkg2:
|
|
@${SRCROOT}/makepkg --nothemes
|
|
|
|
slimpkg3:
|
|
@${SRCROOT}/makepkg --nothemes --norc --nolegacy
|
|
|
|
updatepo:
|
|
@${SRCROOT}/package/translate.sh --update-po
|
|
|
|
utils:
|
|
@make -C "${SRCROOT}"/utils all
|
|
|
|
install:
|
|
@make -C "${SRCROOT}"/utils install
|
|
|
|
clean:
|
|
rm -rf sym obj dst CloverPrefpane/build CloverUpdater/build
|
|
|
|
.PHONY: clean image iso pkg installer updatepo utils
|