mirror of
https://github.com/limosek/zaf.git
synced 2024-11-14 14:39:06 +01:00
11 lines
245 B
Makefile
11 lines
245 B
Makefile
|
# Makefile for generating openwrt ipk packages
|
||
|
# Contrinutions welcome :)
|
||
|
|
||
|
ifeq ($(IPK_PKG),)
|
||
|
IPK_PKG=$(shell . lib/zaf.lib.sh; echo out/zaf-$$ZAF_VERSION.ipk)
|
||
|
endif
|
||
|
|
||
|
$(IPK_PKG):
|
||
|
@echo "Not supported yet. Contributions welcomed! :) "; exit 2
|
||
|
|