mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 15:18:05 +02:00
02cdebbb91
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4091 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
480 B
Makefile
25 lines
480 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
source:
|
|
$(MAKE) -C $(BOARD)-$(KERNEL) source
|
|
|
|
prepare:
|
|
rm -f $(TOPDIR)/.kernel.mk
|
|
$(MAKE) -C $(BOARD)-$(KERNEL) prepare
|
|
|
|
compile:
|
|
$(MAKE) -C $(BOARD)-$(KERNEL) compile
|
|
|
|
install:
|
|
$(MAKE) -C $(BOARD)-$(KERNEL) install
|
|
|
|
clean:
|
|
$(MAKE) -C $(BOARD)-$(KERNEL) clean
|