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