39 lines
814 B
Makefile
39 lines
814 B
Makefile
|
include config.mk
|
||
|
|
||
|
all:
|
||
|
@echo "No option specified."
|
||
|
|
||
|
help:
|
||
|
@echo "NOTICE: This program should not be run directly."
|
||
|
@echo "It is intended to be run within Glacier"
|
||
|
@echo ""
|
||
|
@echo "Possible options for make:"
|
||
|
@echo "- buildpkg"
|
||
|
@echo "- installpkg"
|
||
|
@echo "- installpkg_s"
|
||
|
@echo "- updatepkg"
|
||
|
@echo "- updatepkg_s"
|
||
|
@echo "- removepkg"
|
||
|
@echo "- removepkg_s"
|
||
|
|
||
|
buildpkg:
|
||
|
# Commands required to build the package
|
||
|
|
||
|
installpkg:
|
||
|
# Commands required to install the package as USER
|
||
|
|
||
|
installpkg_s:
|
||
|
# Commands required to install the package as SYSTEM
|
||
|
|
||
|
updatepkg:
|
||
|
# Comands required to update the package as USER
|
||
|
|
||
|
updatepkg_s:
|
||
|
# Commands required to update the package as SYSTEM
|
||
|
|
||
|
removepkg:
|
||
|
# Commands required to remove the package as USER
|
||
|
|
||
|
removepkg_s:
|
||
|
# Commands required to remove the package as SYSTEM
|