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

Side by Side Diff: Makefile

Issue 2824020: bootstub: move everything out of files folder, provide backwards compatible symlink (Closed) Base URL: ssh://gitrw.chromium.org/bootstub
Patch Set: Created 10 years, 6 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
« no previous file with comments | « no previous file | bootstub.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 # 1 #
2 # Copyright (C) 1999-2001 Hewlett-Packard Co. 2 # Copyright (C) 1999-2001 Hewlett-Packard Co.
3 # Contributed by David Mosberger <davidm@hpl.hp.com> 3 # Contributed by David Mosberger <davidm@hpl.hp.com>
4 # Contributed by Stephane Eranian <eranian@hpl.hp.com> 4 # Contributed by Stephane Eranian <eranian@hpl.hp.com>
5 # 5 #
6 # This file is part of the gnu-efi package. 6 # This file is part of the gnu-efi package.
7 # 7 #
8 # GNU-EFI is free software; you can redistribute it and/or modify 8 # GNU-EFI is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by 9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2, or (at your option) 10 # the Free Software Foundation; either version 2, or (at your option)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 -j .rela -j .reloc --target=$(FORMAT) $*.so $@ 74 -j .rela -j .reloc --target=$(FORMAT) $*.so $@
75 75
76 %.so: %.o 76 %.so: %.o
77 $(LD) $(LDFLAGS) $^ -o $@ $(LOADLIBES) 77 $(LD) $(LDFLAGS) $^ -o $@ $(LOADLIBES)
78 78
79 %.o: %.c 79 %.o: %.c
80 $(CC) $(INCDIR) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ 80 $(CC) $(INCDIR) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
81 81
82 %.o: %.S 82 %.o: %.S
83 $(CC) $(INCDIR) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ 83 $(CC) $(INCDIR) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
OLDNEW
« no previous file with comments | « no previous file | bootstub.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698