From c45b5fbb998ca7888607a78b8f89aff75649ebc2 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 21 Jul 2005 11:45:36 +0000 Subject: move nvram,jffs2root,shared libs into target/linux/package and make them broadcom-specific git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1517 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/package/openwrt/Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 target/linux/package/openwrt/Makefile (limited to 'target/linux/package/openwrt/Makefile') diff --git a/target/linux/package/openwrt/Makefile b/target/linux/package/openwrt/Makefile new file mode 100644 index 000000000..ee38f75a1 --- /dev/null +++ b/target/linux/package/openwrt/Makefile @@ -0,0 +1,34 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME := openwrt-utils +PKG_RELEASE := 2 +PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME) + +include $(TOPDIR)/package/rules.mk + +BR2_PACKAGE_OPENWRT:=y # ignore menuconfig +$(eval $(call PKG_template,OPENWRT,openwrt-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + + +$(PKG_BUILD_DIR)/.prepared: + mkdir -p $(PKG_BUILD_DIR) + touch $@ + +$(PKG_BUILD_DIR)/jffs2root: jffs2root.c + $(TARGET_CC) -o $@ $< + +$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/jffs2root + touch $@ + +$(IPKG_OPENWRT): + mkdir -p $(IDIR_OPENWRT)/sbin + cp $(PKG_BUILD_DIR)/jffs2root $(IDIR_OPENWRT)/sbin + $(RSTRIP) $(IDIR_OPENWRT) + $(IPKG_BUILD) $(IDIR_OPENWRT) $(PACKAGE_DIR) + +compile: install-dev +install-dev: + mkdir -p $(STAGING_DIR)/usr/include + cp -a ./include/* $(STAGING_DIR)/usr/include/ -- cgit v1.2.3