mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-19 05:41:13 +08:00
16 lines
369 B
Makefile
16 lines
369 B
Makefile
clean:
|
|
compile:
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_NAME:=luci-lib-dummy
|
|
INCLUDE_DIR:=./dummy
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
install:
|
|
mkdir -p "$(DESTDIR)$(LUCI_LIBRARYDIR)/i18n"
|
|
$(foreach lang,$(LUCI_LANGUAGES),$(foreach po,$(wildcard ${CURDIR}/po/$(lang)/*.po), \
|
|
po2lmo $(po) \
|
|
$(DESTDIR)$(LUCI_LIBRARYDIR)/i18n/$(basename $(notdir $(po))).$(lang).lmo;))
|