2005-03-06 03:34:52 +00:00
|
|
|
# Makefile for OpenWRT
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
2005-03-06 03:34:52 +00:00
|
|
|
# Copyright (C) 2005 by Felix Fietkau <nbd@vd-s.ath.cx>
|
2005-01-16 11:43:02 +00:00
|
|
|
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
#--------------------------------------------------------------
|
|
|
|
# Just run 'make menuconfig', configure stuff, then run 'make'.
|
|
|
|
# You shouldn't need to mess with anything beyond this point...
|
|
|
|
#--------------------------------------------------------------
|
2005-03-06 03:34:52 +00:00
|
|
|
TOPDIR=${shell pwd}
|
|
|
|
export TOPDIR
|
2005-04-05 18:21:58 +00:00
|
|
|
ifneq ($(DEVELOPER),)
|
|
|
|
CONFIG_CONFIG_IN = Config.in.devel
|
|
|
|
else
|
2005-01-16 11:43:02 +00:00
|
|
|
CONFIG_CONFIG_IN = Config.in
|
2005-04-05 18:21:58 +00:00
|
|
|
endif
|
2005-01-16 11:43:02 +00:00
|
|
|
CONFIG_DEFCONFIG = .defconfig
|
|
|
|
CONFIG = package/config
|
|
|
|
|
|
|
|
noconfig_targets := menuconfig config oldconfig randconfig \
|
2005-02-19 13:00:30 +00:00
|
|
|
defconfig allyesconfig allnoconfig release tags
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
# Pull in the user's configuration file
|
|
|
|
ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
|
2005-03-06 03:34:52 +00:00
|
|
|
-include $(TOPDIR)/.config
|
2005-01-16 11:43:02 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
all: world
|
|
|
|
|
2005-04-08 09:08:38 +00:00
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
##############################################################
|
|
|
|
#
|
|
|
|
# Build the toolchain
|
|
|
|
#
|
|
|
|
##############################################################
|
|
|
|
toolchain_install:
|
|
|
|
$(MAKE) -C toolchain install
|
|
|
|
|
|
|
|
##############################################################
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
2005-03-06 03:34:52 +00:00
|
|
|
# Make all packages
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
|
|
|
##############################################################
|
2005-02-19 07:46:44 +00:00
|
|
|
|
2005-04-20 17:01:30 +00:00
|
|
|
package_compile: target_compile
|
|
|
|
$(MAKE) -C package compile
|
|
|
|
|
|
|
|
package_install: package_compile toolchain
|
|
|
|
$(MAKE) -C package install
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# You should probably leave this stuff alone unless you know
|
|
|
|
# what you are doing.
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
|
|
|
|
# In this section, we need .config
|
|
|
|
include .config.cmd
|
|
|
|
|
2005-03-21 16:15:01 +00:00
|
|
|
world: $(DL_DIR) $(BUILD_DIR) configtest target_prepare $(TARGET_DIR) toolchain_install package_install target_install package_index
|
2005-02-19 07:46:44 +00:00
|
|
|
|
2005-03-21 16:15:01 +00:00
|
|
|
.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
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2005-03-07 15:11:58 +00:00
|
|
|
package_index:
|
2005-03-07 16:25:40 +00:00
|
|
|
(cd $(PACKAGE_DIR); \
|
|
|
|
$(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages \
|
|
|
|
)
|
2005-03-07 15:11:58 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
target_prepare:
|
|
|
|
$(MAKE) -C target prepare
|
|
|
|
|
2005-04-20 17:01:30 +00:00
|
|
|
target_compile:
|
|
|
|
$(MAKE) -C target compile
|
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
target_install:
|
|
|
|
$(MAKE) -C target install
|
|
|
|
|
2005-01-16 11:43:02 +00:00
|
|
|
$(DL_DIR):
|
|
|
|
@mkdir -p $(DL_DIR)
|
|
|
|
|
|
|
|
$(BUILD_DIR):
|
|
|
|
@mkdir -p $(BUILD_DIR)
|
|
|
|
|
|
|
|
source: $(TARGETS_SOURCE)
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Cleanup and misc junk
|
|
|
|
#
|
|
|
|
#############################################################
|
2005-03-06 03:34:52 +00:00
|
|
|
image_clean:
|
|
|
|
rm -f $(STAMP_DIR)/.*-compile
|
|
|
|
rm -f $(STAMP_DIR)/.*-install
|
|
|
|
rm -rf $(BIN_DIR)
|
|
|
|
|
|
|
|
target_clean: image_clean
|
|
|
|
rm -rf $(TARGET_DIR)
|
|
|
|
|
|
|
|
clean: target_clean
|
|
|
|
@$(MAKE) -C $(CONFIG) clean
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
dirclean: clean
|
|
|
|
rm -rf $(BUILD_DIR)
|
2005-02-19 07:46:44 +00:00
|
|
|
|
2005-02-19 13:00:30 +00:00
|
|
|
distclean: clean
|
2005-03-23 09:39:15 +00:00
|
|
|
rm -rf $(STAMP_DIR) $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR)
|
2005-03-06 03:34:52 +00:00
|
|
|
rm -f .config* .tmpconfig.h
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
sourceball: distclean
|
2005-01-16 11:43:02 +00:00
|
|
|
set -e; \
|
|
|
|
cd ..; \
|
|
|
|
rm -f buildroot.tar.bz2; \
|
|
|
|
tar -cvf buildroot.tar buildroot; \
|
|
|
|
bzip2 -9 buildroot.tar; \
|
|
|
|
|
|
|
|
else # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
|
|
|
|
|
|
|
all: menuconfig
|
|
|
|
|
|
|
|
# configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
$(CONFIG)/conf:
|
|
|
|
$(MAKE) -C $(CONFIG) conf
|
|
|
|
-@if [ ! -f .config ] ; then \
|
|
|
|
cp $(CONFIG_DEFCONFIG) .config; \
|
|
|
|
fi
|
|
|
|
$(CONFIG)/mconf:
|
2005-03-06 03:34:52 +00:00
|
|
|
$(MAKE) -C $(CONFIG)
|
2005-01-16 11:43:02 +00:00
|
|
|
-@if [ ! -f .config ] ; then \
|
|
|
|
cp $(CONFIG_DEFCONFIG) .config; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
menuconfig: $(CONFIG)/mconf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
config: $(CONFIG)/conf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
oldconfig: $(CONFIG)/conf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
randconfig: $(CONFIG)/conf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
allyesconfig: $(CONFIG)/conf
|
|
|
|
#@$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
|
|
|
|
#sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
allnoconfig: $(CONFIG)/conf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
defconfig: $(CONFIG)/conf
|
2005-02-23 21:50:10 +00:00
|
|
|
-touch .config
|
|
|
|
-cp .config .config.test
|
2005-01-16 11:43:02 +00:00
|
|
|
@$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
|
2005-03-06 03:34:52 +00:00
|
|
|
-./scripts/configtest.pl
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
|
|
|
|
|
|
|
|
.PHONY: dummy subdirs release distclean clean config oldconfig \
|
|
|
|
menuconfig tags check test depend
|
|
|
|
|