projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix memleaks in driver_broadcom.c (thanks framer99)
[openwrt.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
ed4ea15
..
1b8d968
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-24,7
+24,11
@@
#--------------------------------------------------------------
TOPDIR=${shell pwd}
export TOPDIR
#--------------------------------------------------------------
TOPDIR=${shell pwd}
export TOPDIR
+ifneq ($(DEVELOPER),)
+CONFIG_CONFIG_IN = Config.in.devel
+else
CONFIG_CONFIG_IN = Config.in
CONFIG_CONFIG_IN = Config.in
+endif
CONFIG_DEFCONFIG = .defconfig
CONFIG = package/config
CONFIG_DEFCONFIG = .defconfig
CONFIG = package/config
@@
-41,6
+45,8
@@
include $(TOPDIR)/rules.mk
all: world
all: world
+.NOTPARALLEL:
+
##############################################################
#
# Build the toolchain
##############################################################
#
# Build the toolchain
@@
-55,8
+61,11
@@
toolchain_install:
#
##############################################################
#
##############################################################
-package_install: toolchain
- $(MAKE) -C package compile install
+package_compile: target_compile
+ $(MAKE) -C package compile
+
+package_install: package_compile toolchain
+ $(MAKE) -C package install
#############################################################
#
#############################################################
#
@@
-65,23
+74,28
@@
package_install: toolchain
#
#############################################################
#
#############################################################
-
# In this section, we need .config
include .config.cmd
# In this section, we need .config
include .config.cmd
-world: $(DL_DIR) $(BUILD_DIR)
target_prepare $(TARGET_DIR) toolchain_install package_install target_install
+world: $(DL_DIR) $(BUILD_DIR)
configtest target_prepare $(TARGET_DIR) toolchain_install package_install target_install package_index
-.PHONY: all world clean dirclean distclean image_clean target_clean source target_prepare target_install toolchain_install package_install
+.PHONY: all world clean dirclean distclean image_clean target_clean source target_prepare target_install toolchain_install package_install configtest
+
+configtest:
+ -cp .config .config.test
+ -scripts/configtest.pl
+
+package_index:
+ (cd $(PACKAGE_DIR); \
+ $(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages \
+ )
-#############################################################
-#
-# staging and target directories do NOT list these as
-# dependancies anywhere else
-#
-#############################################################
target_prepare:
$(MAKE) -C target prepare
target_prepare:
$(MAKE) -C target prepare
+target_compile:
+ $(MAKE) -C target compile
+
target_install:
$(MAKE) -C target install
target_install:
$(MAKE) -C target install
@@
-93,6
+107,16
@@
$(BUILD_DIR):
source: $(TARGETS_SOURCE)
source: $(TARGETS_SOURCE)
+
+package/%:
+ $(MAKE) -C package $(patsubst package/%,%,$@)
+
+target/%:
+ $(MAKE) -C target $(patsubst target/%,%,$@)
+
+toolchain/%:
+ $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
+
#############################################################
#
# Cleanup and misc junk
#############################################################
#
# Cleanup and misc junk
@@
-105,18
+129,16
@@
image_clean:
target_clean: image_clean
rm -rf $(TARGET_DIR)
target_clean: image_clean
rm -rf $(TARGET_DIR)
+ rm -rf $(BUILD_DIR)/linux-*/root
clean: target_clean
@$(MAKE) -C $(CONFIG) clean
dirclean: clean
clean: target_clean
@$(MAKE) -C $(CONFIG) clean
dirclean: clean
- rm -rf $(STAMP_DIR)
- $(MAKE) -C package clean
- $(MAKE) -C target clean
rm -rf $(BUILD_DIR)
distclean: clean
rm -rf $(BUILD_DIR)
distclean: clean
- rm -rf $(STAMP_DIR) $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR)
+ rm -rf $(STAMP_DIR) $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR)
$(STAGING_DIR)
rm -f .config* .tmpconfig.h
sourceball: distclean
rm -f .config* .tmpconfig.h
sourceball: distclean
This page took
0.025306 seconds
and
4
git commands to generate.