## Process this file with automake to create Makefile.in. AUTOMAKE_OPTIONS = gnu # gnits SUBDIRS = . iso jis msft bin_SCRIPTS = unicode-config AM_CFLAGS = $(cflags) lib_LTLIBRARIES = libunicode.la libunicode_la_SOURCES = chartables.h convert.c convert.h decomp.c \ init.c iso8859.c latin1.c prop.c sjis.c ucs2.c ucs4.c utf8.c utf8.h utf8conv.c include_HEADERS = unicode.h noinst_HEADERS = decomp.h convert.h EXTRA_DIST = \ libunicode.spec.in \ unicodeConf.sh.in dist-hook: libunicode.spec cp libunicode.spec $(distdir) cvs-dist: maintainer-check @if sed 1q $(srcdir)/NEWS | grep -e "$(VERSION)" > /dev/null; then :; else \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1; \ fi cd $(srcdir) && cvs -q tag `echo "Release-$(VERSION)" | sed 's/\./-/g'` $(MAKE) distcheck unicodeConf.sh: unicodeConf.sh.in Makefile ## Use sed and then mv to avoid problems if the user interrupts. sed -e 's?\@UNICODE_LIBDIR\@?$(UNICODE_LIBDIR)?g' \ -e 's?\@UNICODE_INCLUDEDIR\@?$(UNICODE_INCLUDEDIR)?g' \ -e 's?\@UNICODE_LIBS\@?$(UNICODE_LIBS)?g' \ -e 's?\@VERSION\@?$(VERSION)?g' \ < $(srcdir)/unicodeConf.sh.in > unicodeConf.tmp \ && mv unicodeConf.tmp unicodeConf.sh confexecdir=$(libdir) confexec_DATA = unicodeConf.sh CLEAN_FILES=unicodeConf.sh