openwrtv3/target/sdk/files/Makefile

55 lines
1.1 KiB
Makefile
Raw Normal View History

# Makefile for OpenWrt
#
2007-12-14 00:33:25 +00:00
# Copyright (C) 2007 OpenWrt.org
#
2007-12-14 00:33:25 +00:00
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
2005-04-10 20:28:17 +00:00
2007-12-14 00:33:25 +00: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
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 $@)
@mkdir -p bin/packages
2007-03-26 20:17:28 +00:00
@touch $@
2007-12-14 00:33:25 +00:00
clean: FORCE
rm -rf $(BUILD_DIR) $(BIN_DIR)
2005-04-10 20:28:17 +00:00
2007-12-14 00:33:25 +00:00
dirclean: clean
rm -rf $(TMP_DIR)
2005-04-10 20:28:17 +00:00
2007-12-14 00:33:25 +00:00
# check prerequisites before starting to build
prereq: $(package/stamp-prereq) ;
2005-04-10 20:28:17 +00:00
2007-12-14 00:33:25 +00:00
world: prepare $(package/stamp-compile) FORCE
@for configfile in `find package -maxdepth 2 -name Config.in` ; do \
$(MAKE) compile -C `dirname $$configfile`; \
done
@$(MAKE) package/index
2005-04-10 20:28:17 +00:00
2007-12-14 00:33:25 +00:00
.PHONY: clean dirclean prereq prepare world
2007-12-14 00:33:25 +00:00
endif