mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-22 06:57:36 +08:00
8bee45444f
The sys configure scripts are almost all effectively stub scripts that pass the higher level options to its own makefile. The phoenix & linux ones are a bit more complicated with nested subdirs, so those have been left alone for now. Plus, I don't really have a way of testing them.
18 lines
373 B
Makefile
18 lines
373 B
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
lib_a_SOURCES =
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
|
|
# This is a hack to force automake to include a definition for
|
|
# COMPILE.
|
|
EXTRA_LIBRARIES = libfoo.a
|
|
libfoo_a_SOURCES = crt0.c
|
|
|
|
all-local: crt0.o
|