| OLD | NEW |
| 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 Loading... |
| 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 $@ |
| OLD | NEW |