Makefile 456 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (C) 2006 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. include $(INCLUDE_DIR)/target.mk
  9. download:
  10. $(MAKE) -C $(BOARD)-$(KERNEL) download
  11. prepare:
  12. $(MAKE) -C $(BOARD)-$(KERNEL) prepare
  13. compile:
  14. $(MAKE) -C $(BOARD)-$(KERNEL) compile
  15. install:
  16. $(MAKE) -C $(BOARD)-$(KERNEL) install
  17. clean:
  18. $(MAKE) -C $(BOARD)-$(KERNEL) clean