mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-21 05:49:19 +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.
16 lines
451 B
Makefile
16 lines
451 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 = chown.c close.c execve.c fork.c fstat.c getenv.c \
|
|
getpid.c gettod.c isatty.c kill.c link.c lseek.c open.c rdoshelp.c \
|
|
rdos.S read.c readlink.c sbrk.c stat.c symlink.c times.c unlink.c \
|
|
wait.c write.c
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
|
|
all-local: crt0.o
|