mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 11:31:00 +08:00
2e7c576aa7
* Makefile.am (AM_MAKEFLAGS): Pass CCASFLAGS. * Makefile.in: Regenerated. * libc/machine/sh/Makefile.am (AM_CCASFLAGS): Remove extraneous CFLAGS reference now that CCASFLAGS are being extended properly via multilib. * libc/machine/sh/Makefile.in: Regenerated.
29 lines
664 B
Makefile
29 lines
664 B
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = cygnus
|
|
|
|
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
AM_CCASFLAGS = $(INCLUDES)
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
if SH64
|
|
lib_a_SOURCES = memcpy.S memset.S setjmp.S strcpy.S strlen.S strcmp.S strncpy.S
|
|
else
|
|
lib_a_SOURCES = memcpy.S memset.S setjmp.S strcpy.S strlen.S strcmp.S
|
|
endif
|
|
|
|
lib_a_CCASFLAGS=$(AM_CCASFLAGS)
|
|
lib_a_CFLAGS=$(AM_CFLAGS)
|
|
|
|
$(lpfx)memcpy.o: asm.h
|
|
$(lpfx)memset.o: asm.h
|
|
$(lpfx)setjmp.o: asm.h
|
|
$(lpfx)strcpy.o: asm.h
|
|
$(lpfx)strcmp.o: asm.h
|
|
$(lpfx)strncpy.o: asm.h
|
|
|
|
ACLOCAL_AMFLAGS = -I ../../..
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|