OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 CC ?= gcc | 5 CC ?= gcc |
6 CFLAGS += -Wall -Werror -ansi -DFIRMWARE | 6 CFLAGS += -Wall -Werror -ansi -DFIRMWARE |
7 | 7 |
8 all: firmware | 8 all: firmware |
9 | 9 |
10 .PHONY: firmware | 10 .PHONY: firmware |
11 | 11 |
12 firmware: tlcl.c tlcl_internal.h tlcl.h saved-structures.h | 12 firmware: tlcl.c tlcl_internal.h tlcl.h structures.h |
13 $(CC) -Wall -Werror -ansi -DFIRMWARE -c tlcl.c | 13 $(CC) -Wall -Werror -ansi -DFIRMWARE -c tlcl.c |
14 | 14 |
15 clean: | 15 clean: |
16 rm -f *.o | 16 rm -f *.o |
OLD | NEW |