Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(498)

Side by Side Diff: GNUmakefile

Issue 6579034: Add the device type/parameters support for cbootimage tool. (Closed) Base URL: http://git.chromium.org/git/cbootimage.git@master
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cbootimage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 C_FILES := 1 C_FILES :=
2 C_FILES += nvbctlib_ap20.c 2 C_FILES += nvbctlib_ap20.c
3 C_FILES += cbootimage.c 3 C_FILES += cbootimage.c
4 C_FILES += data_layout.c 4 C_FILES += data_layout.c
5 C_FILES += parse.c 5 C_FILES += parse.c
6 C_FILES += set.c 6 C_FILES += set.c
7 C_FILES += crypto.c 7 C_FILES += crypto.c
8 C_FILES += aes_ref.c 8 C_FILES += aes_ref.c
9 C_FILES += context.c 9 C_FILES += context.c
10 10
11 OBJS := $(patsubst %.c,%.o,$(notdir $(C_FILES))) 11 OBJS := $(patsubst %.c,%.o,$(notdir $(C_FILES)))
12 12
13 TARGET = cbootimage 13 TARGET = cbootimage
14 CC = gcc 14 CC = gcc
15 CFLAGS=-Wall -O 15 CFLAGS=-Wall -O -lm
16 16
17 $(TARGET):$(OBJS) 17 $(TARGET):$(OBJS)
18 $(CC) -o $(TARGET) $(OBJS) $(CFLAGS) 18 $(CC) -o $(TARGET) $(OBJS) $(CFLAGS)
19 19
20 clean: 20 clean:
21 rm -rf *.o $(TARGET) 21 rm -rf *.o $(TARGET)
OLDNEW
« no previous file with comments | « no previous file | cbootimage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698