Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « nds32 « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa2cdc872aa3fa7c7fe4810448f9acef666e9549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## Process this file with automake to generate Makefile.in

AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)

AM_CCASFLAGS = $(AM_CPPFLAGS)

noinst_LIBRARIES = lib.a

if IS_NDS32_ISA_V3M
lib_a_SOURCES = abort.c setjmp.S strcmp.S strcpy.S
else
lib_a_SOURCES = abort.c memcpy.S memset.S setjmp.S strcmp.S strcpy.S
endif
lib_a_CFLAGS = $(AM_CFLAGS)