05e67cb63a845b278e77f791773292c98e671463
[openwrt.git] / package / utils / fbtest / Makefile
1 #
2 # Copyright (C) 2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=fbtest
11 PKG_RELEASE:=1
12
13 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/fbtest
18   SECTION:=utils
19   CATEGORY:=Utilities
20   TITLE:=Frame buffer device testing tool
21   DEPENDS:=@DISPLAY_SUPPORT
22 endef
23
24 define Build/Prepare
25         mkdir -p $(PKG_BUILD_DIR)
26         $(CP) ./src/* $(PKG_BUILD_DIR)/
27 endef
28
29 define Build/Configure
30 endef
31
32 define Build/Compile
33         $(MAKE) -C $(PKG_BUILD_DIR) \
34                 CC="$(TARGET_CC)" \
35                 CFLAGS="$(TARGET_CFLAGS) -Wall" \
36                 LDFLAGS="$(TARGET_LDFLAGS)"
37 endef
38
39 define Package/fbtest/install
40         $(INSTALL_DIR) $(1)/usr/sbin
41         $(INSTALL_BIN) $(PKG_BUILD_DIR)/fbtest $(1)/usr/sbin/
42 endef
43
44 $(eval $(call BuildPackage,fbtest))