2013-07-09 19:06:47 +00:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
2021-12-30 14:26:52 -05:00
|
|
|
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
2013-07-09 19:06:47 +00:00
|
|
|
|
2021-12-30 14:26:52 -05:00
|
|
|
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
2013-07-09 19:06:47 +00:00
|
|
|
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
|
2014-03-21 21:09:46 +00:00
|
|
|
if IS_NDS32_ISA_V3M
|
|
|
|
lib_a_SOURCES = abort.c setjmp.S strcmp.S strcpy.S
|
|
|
|
else
|
2013-07-09 19:19:35 +00:00
|
|
|
lib_a_SOURCES = abort.c memcpy.S memset.S setjmp.S strcmp.S strcpy.S
|
2014-03-21 21:09:46 +00:00
|
|
|
endif
|
2013-07-09 19:06:47 +00:00
|
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|