63 lines
1.3 KiB
Makefile
Executable File
63 lines
1.3 KiB
Makefile
Executable File
#
|
|
# Copyright (C) 2007-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mg-mgncs-sample
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(COMPILE_DIR)/$(PKG_NAME)
|
|
HAVE_SOURCE := yes
|
|
|
|
include $(BUILD_DIR)/package.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
SECTION:=gui
|
|
CATEGORY:=Minigui
|
|
DEPENDS:= +libminigui-gpl +alsa-utils +tslib +libuapi +libmgi +libmgplus +mgncs4touch +libmgncs
|
|
TITLE:=mg-mgncs-sample
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)/
|
|
$(CP) -r ./src $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
TARGET_LDFLAGS+=-lfreetype
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src \
|
|
MAKE="$(MAKE)" \
|
|
ARCH="$(TARGET_ARCH)" \
|
|
AR="$(TARGET_AR)" \
|
|
CC="$(TARGET_CC)" \
|
|
CXX="$(TARGET_CXX)" \
|
|
CFLAGS="$(TARGET_CFLAGS)"\
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
|
|
all
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/bin/mg-mgncs
|
|
$(CP) \
|
|
$(PKG_BUILD_DIR)/src/text-highlight \
|
|
$(1)/usr/bin/mg-mgncs
|
|
$(CP) \
|
|
$(PKG_BUILD_DIR)/src/effect_scroll \
|
|
$(1)/usr/bin/mg-mgncs
|
|
$(CP) \
|
|
./res \
|
|
$(1)/usr/bin/mg-mgncs/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|