Makefile 451 B

1234567891011121314151617181920
  1. #
  2. # Copyright (C) 2010 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. CC:=gcc
  8. OBJCOPY:=objcopy
  9. all: g5_Plus1_2_31_unmanaged_Atheros_v3.bin \
  10. g5_Plus1_2_31_unmanaged_Atheros_v4.bin \
  11. g5_Plus1_2_29b_unmanaged_Atheros_v5.bin \
  12. g5e_Plus1_2_29a_unmanaged_Atheros_v3.bin
  13. %.o: %.c
  14. $(CC) $(CFLAGS) -c $^ -o $@
  15. %.bin: %.o
  16. $(OBJCOPY) -O binary -j .data $^ $@