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

Side by Side Diff: GNUmakefile

Issue 6469010: Factor out the context specific functions into their own file. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/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.c » ('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 10
10 OBJS := $(patsubst %.c,%.o,$(notdir $(C_FILES))) 11 OBJS := $(patsubst %.c,%.o,$(notdir $(C_FILES)))
11 12
12 TARGET = cbootimage 13 TARGET = cbootimage
13 CC = gcc 14 CC = gcc
14 CFLAGS=-Wall -O 15 CFLAGS=-Wall -O
15 16
16 $(TARGET):$(OBJS) 17 $(TARGET):$(OBJS)
17 $(CC) -o $(TARGET) $(OBJS) $(CFLAGS) 18 $(CC) -o $(TARGET) $(OBJS) $(CFLAGS)
18 19
19 clean: 20 clean:
20 rm -rf *.o $(TARGET) 21 rm -rf *.o $(TARGET)
OLDNEW
« no previous file with comments | « no previous file | cbootimage.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698