From 725611a466f2edf12f809d22339b22223af4afe7 Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 7 Oct 2006 11:57:20 +0000 Subject: move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the developers are ready git-svn-id: svn://svn.openwrt.org/openwrt/trunk@4944 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/sdk/files/Makefile.sdk | 42 ---------------------------------- openwrt/package/sdk/files/README.SDK | 7 ------ openwrt/package/sdk/files/depend.mk | 6 ----- 3 files changed, 55 deletions(-) delete mode 100644 openwrt/package/sdk/files/Makefile.sdk delete mode 100644 openwrt/package/sdk/files/README.SDK delete mode 100644 openwrt/package/sdk/files/depend.mk (limited to 'openwrt/package/sdk/files') diff --git a/openwrt/package/sdk/files/Makefile.sdk b/openwrt/package/sdk/files/Makefile.sdk deleted file mode 100644 index 6d5f61ad1..000000000 --- a/openwrt/package/sdk/files/Makefile.sdk +++ /dev/null @@ -1,42 +0,0 @@ -# OpenWrt SDK Makefile -TOPDIR:=${shell pwd} -export TOPDIR -DEVELOPER:=1 -export DEVELOPER - -include $(TOPDIR)/rules.mk -include $(TOPDIR)/package/depend.mk - -PACKAGES:=$(filter-out %.mk,$(shell ls $(TOPDIR)/package)) -PACKAGES_PREPARE:=$(foreach package,$(PACKAGES),$(package)-prepare) -PACKAGES_COMPILE:=$(foreach package,$(PACKAGES),$(package)-compile) -PACKAGES_CLEAN:=$(foreach package,$(PACKAGES),$(package)-clean) - -all: compile package_index -compile: $(PACKAGES_COMPILE) -clean: $(PACKAGES_CLEAN) - rm -rf $(BUILD_DIR) - rm -rf bin - -distclean: clean - rm -rf $(DL_DIR) - -%-prepare: $(BUILD_DIR) - @$(MAKE) -C package/$(patsubst %-prepare,%,$@) prepare - -%-compile: %-prepare - @$(MAKE) -C package/$(patsubst %-compile,%,$@) compile - -%-clean: - @$(MAKE) -C package/$(patsubst %-clean,%,$@) clean - - -$(BUILD_DIR): - mkdir -p $@ - mkdir -p $(DL_DIR) - -package_index: - (cd $(PACKAGE_DIR); \ - $(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages \ - ) - diff --git a/openwrt/package/sdk/files/README.SDK b/openwrt/package/sdk/files/README.SDK deleted file mode 100644 index 454e32b2f..000000000 --- a/openwrt/package/sdk/files/README.SDK +++ /dev/null @@ -1,7 +0,0 @@ -This is the OpenWrt SDK. It contains a stripped-down version of -the buildroot. You can use it to test/develop packages without -having to compile your own toolchain or any of the libraries -included with OpenWrt. - -To use it, just put your buildroot-compatible package directory -in the subdir 'package/' and run 'make' from this directory. diff --git a/openwrt/package/sdk/files/depend.mk b/openwrt/package/sdk/files/depend.mk deleted file mode 100644 index d7b844db5..000000000 --- a/openwrt/package/sdk/files/depend.mk +++ /dev/null @@ -1,6 +0,0 @@ -# You can put your package dependencies in here -# Example (make openvpn depend on openssl): -# openvpn-compile: openssl-compile -# -# Note: This file is not present in the full buildroot. There you -# have to put your package dependencies in buildroot/package/Makefile -- cgit v1.2.3