summaryrefslogtreecommitdiffstats
path: root/package/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-21 03:17:13 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-21 03:17:13 +0000
commit1b14a20c70b78c037ef4bcc6d1edb61ea8b27e68 (patch)
tree2f57e0d1e9bdcfefc647b6d8422dfed3156d7f0a /package/Makefile
parentb827761cb51040171162c698ec9a873b26ae7ad9 (diff)
fix and enable the sdk
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4037 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/Makefile b/package/Makefile
index 2b7f0db76..e947bcfae 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -27,9 +27,12 @@ $(STAMP_DIR) $(TARGET_DIR):
%-clean: $(STAMP_DIR) $(TARGET_DIR)
$(MAKE) -C $(patsubst %-clean,%,$@) clean MAKEFLAGS="$(BUILD_MAKEFLAGS)"
+ifeq ($(SDK),1)
+GENDEP_OPTS := -s
+endif
$(TOPDIR)/.pkgdeps: $(TOPDIR)/.pkginfo
- @$(TOPDIR)/scripts/gen_deps.pl < $< > $@ || rm -f $@
+ @$(TOPDIR)/scripts/gen_deps.pl $(GENDEP_OPTS) < $< > $@ || rm -f $@
all: compile
clean: $(patsubst %,%-clean,$(package-) $(package-y) $(package-m))