summaryrefslogtreecommitdiffstats
path: root/target/sdk/files
diff options
context:
space:
mode:
Diffstat (limited to 'target/sdk/files')
-rw-r--r--target/sdk/files/Makefile.sdk42
-rw-r--r--target/sdk/files/README.SDK7
-rw-r--r--target/sdk/files/depend.mk6
3 files changed, 55 insertions, 0 deletions
diff --git a/target/sdk/files/Makefile.sdk b/target/sdk/files/Makefile.sdk
new file mode 100644
index 000000000..6d5f61ad1
--- /dev/null
+++ b/target/sdk/files/Makefile.sdk
@@ -0,0 +1,42 @@
+# 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/target/sdk/files/README.SDK b/target/sdk/files/README.SDK
new file mode 100644
index 000000000..454e32b2f
--- /dev/null
+++ b/target/sdk/files/README.SDK
@@ -0,0 +1,7 @@
+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/target/sdk/files/depend.mk b/target/sdk/files/depend.mk
new file mode 100644
index 000000000..d7b844db5
--- /dev/null
+++ b/target/sdk/files/depend.mk
@@ -0,0 +1,6 @@
+# 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