mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 22:06:50 +00:00
26 lines
801 B
Makefile
26 lines
801 B
Makefile
|
## Process this file with automake to generate Makefile.in
|
||
|
|
||
|
AUTOMAKE_OPTIONS = cygnus
|
||
|
|
||
|
INCLUDES = -I$(srcdir) -I$(srcdir)/../libc/sys/linux $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
||
|
|
||
|
if ELIX_LEVEL_1
|
||
|
LIB_OBJS =
|
||
|
else
|
||
|
LIB_OBJS = euc-jp.$(oext) jis0201.$(oext) jis0208.$(oext) jis0212.$(oext)
|
||
|
endif
|
||
|
|
||
|
AM_CFLAGS = -DNDEBUG
|
||
|
|
||
|
pkglib_LTLIBRARIES = EUC-JP.la
|
||
|
EUC_JP_la_SOURCES = dummy.c
|
||
|
EUC_JP_la_LIBADD = $(LIB_OBJS)
|
||
|
EUC_JP_la_DEPENDENCIES = $(LIB_OBJS)
|
||
|
EUC_JP_la_LDFLAGS = -module -no-undefined -Xcompiler -Wl,-rpath-link=.. -Xcompiler -nostdlib -L.. -lc
|
||
|
|
||
|
install-data-local: install-pkglibLTLIBRARIES $(srcdir)/gconv-modules
|
||
|
$(INSTALL_DATA) $(srcdir)/gconv-modules $(DESTDIR)$(pkglibdir)/gconv-modules
|
||
|
|
||
|
ACLOCAL_AMFLAGS = -I .. -I ../..
|
||
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|