blob: 190b389021dd171fce3557a3d3bec513399c2066 (
plain)
1
2
3
4
5
6
7
8
9
|
## Process this file with automake to generate Makefile.in
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(TARGET_CFLAGS)
LIB_SOURCES = errno.c
noinst_LIBRARIES = lib.a
lib_a_SOURCES = $(LIB_SOURCES)
lib_a_CFLAGS = $(AM_CFLAGS)
|