Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## Process this file with automake to generate Makefile.in | 1 ## Process this file with automake to generate Makefile.in |
| 2 | 2 |
| 3 AUTOMAKE_OPTIONS = cygnus | 3 AUTOMAKE_OPTIONS = cygnus |
| 4 | 4 |
| 5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) | 5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) |
| 6 | 6 |
| 7 AM_CCASFLAGS = $(INCLUDES) | 7 AM_CCASFLAGS = $(INCLUDES) |
| 8 | 8 |
| 9 noinst_LIBRARIES = lib.a | 9 noinst_LIBRARIES = lib.a |
| 10 | 10 |
| 11 lib_a_SOURCES = dummysys.c aeabi_atexit.c | 11 lib_a_SOURCES = dummysys.c aeabi_atexit.c |
| 12 lib_a_CCASFLAGS = $(AM_CCASFLAGS) | 12 lib_a_CCASFLAGS = $(AM_CCASFLAGS) |
| 13 lib_a_CFLAGS = $(AM_CFLAGS) | 13 lib_a_CFLAGS = $(AM_CFLAGS) |
| 14 | 14 |
| 15 .c.o: | |
|
Roland McGrath
2015/10/09 20:42:19
Put the explanation in a comment here rather than
Petr Hosek
2015/10/15 18:39:59
Done.
| |
| 16 $(COMPILE) -c $< -o $@ | |
| 17 | |
| 15 all: crt0.o | 18 all: crt0.o |
| 16 | 19 |
| 17 ACLOCAL_AMFLAGS = -I ../../.. -I ../../../.. | 20 ACLOCAL_AMFLAGS = -I ../../.. -I ../../../.. |
| 18 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host | 21 CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host |
| OLD | NEW |