OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 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  
8 CC:=gcc
9 OBJCOPY:=objcopy
10  
11 all: g5_Plus1_2_31_unmanaged_Atheros_v3.bin \
12 g5_Plus1_2_31_unmanaged_Atheros_v4.bin \
13 g5_Plus1_2_29b_unmanaged_Atheros_v5.bin \
14 g5e_Plus1_2_29a_unmanaged_Atheros_v3.bin
15  
16 %.o: %.c
17 $(CC) $(CFLAGS) -c $^ -o $@
18  
19 %.bin: %.o
20 $(OBJCOPY) -O binary -j .data $^ $@