Root/nanonote-files/Makefile

1include $(TOPDIR)/rules.mk
2
3PKG_NAME:=nanonote-files
4PKG_VERSION:=1.1
5
6include $(INCLUDE_DIR)/package.mk
7
8define Package/nanonote-files/Default
9    MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
10    TITLE:=NanoNote Files
11    SECTION:=utils
12    CATEGORY:=Utilities
13endef
14
15define Package/nanonote-example-files
16    $(call Package/nanonote-files/Default)
17    TITLE+=(Example Files)
18endef
19
20define Package/nanonote-script-files
21    $(call Package/nanonote-files/Default)
22    TITLE+=(Script Files)
23endef
24
25define Build/Compile
26endef
27
28define Package/nanonote-example-files/install
29    $(CP) ./example-files/* $(1)/
30endef
31
32define Package/nanonote-script-files/install
33    $(CP) ./script-files/* $(1)/
34endef
35
36$(eval $(call BuildPackage,nanonote-example-files))
37$(eval $(call BuildPackage,nanonote-script-files))
38

Archive Download this file



interactive