2006-06-21 11:17:13 +08:00
|
|
|
# Makefile for OpenWrt
|
|
|
|
#
|
2015-02-09 06:54:27 +08:00
|
|
|
# Copyright (C) 2007-2015 OpenWrt.org
|
2006-06-21 11:17:13 +08:00
|
|
|
#
|
2007-12-14 08:33:25 +08:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
2006-06-21 11:17:13 +08:00
|
|
|
#
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
TOPDIR:=${CURDIR}
|
|
|
|
LC_ALL:=C
|
|
|
|
LANG:=C
|
|
|
|
SDK:=1
|
|
|
|
export TOPDIR LC_ALL LANG SDK
|
|
|
|
|
|
|
|
world:
|
|
|
|
|
|
|
|
include $(TOPDIR)/include/host.mk
|
|
|
|
|
|
|
|
ifneq ($(OPENWRT_BUILD),1)
|
|
|
|
override OPENWRT_BUILD=1
|
|
|
|
export OPENWRT_BUILD
|
2014-03-13 20:12:50 +08:00
|
|
|
|
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
|
|
|
_SINGLE=export MAKEFLAGS=$(space);
|
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
include $(TOPDIR)/include/debug.mk
|
|
|
|
include $(TOPDIR)/include/depends.mk
|
|
|
|
include $(TOPDIR)/include/toplevel.mk
|
|
|
|
else
|
|
|
|
include rules.mk
|
|
|
|
include $(INCLUDE_DIR)/depends.mk
|
|
|
|
include $(INCLUDE_DIR)/subdir.mk
|
|
|
|
include package/Makefile
|
|
|
|
|
|
|
|
$(package/stamp-compile): $(BUILD_DIR)/.prepared
|
|
|
|
$(BUILD_DIR)/.prepared: Makefile
|
|
|
|
@mkdir -p $$(dirname $@)
|
2007-03-27 04:17:28 +08:00
|
|
|
@touch $@
|
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
clean: FORCE
|
2015-01-10 19:17:02 +08:00
|
|
|
git clean -f -d $(STAGING_DIR); true
|
|
|
|
git clean -f -d $(BUILD_DIR); true
|
|
|
|
git clean -f -d $(BIN_DIR); true
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
dirclean: clean
|
2015-01-10 19:17:02 +08:00
|
|
|
git reset --hard HEAD
|
|
|
|
git clean -f -d
|
|
|
|
rm -rf feeds/
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
# check prerequisites before starting to build
|
|
|
|
prereq: $(package/stamp-prereq) ;
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
world: prepare $(package/stamp-compile) FORCE
|
|
|
|
@$(MAKE) package/index
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
.PHONY: clean dirclean prereq prepare world
|
2005-12-12 08:08:08 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
endif
|