From: rufustfirefly Date: Mon, 19 Feb 2001 15:47:44 +0000 (+0000) Subject: makefile fix from Donald Lee (donlee@icompute.com) X-Git-Tag: netatalk-1-5-rc1~576 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e828c3730c1d1a30c9bb5ac6eed0d484fedbda18;p=netatalk.git makefile fix from Donald Lee (donlee@icompute.com) --- diff --git a/etc/afpd/nls/Makefile.am b/etc/afpd/nls/Makefile.am index 30ace1d4..83cdc0cc 100644 --- a/etc/afpd/nls/Makefile.am +++ b/etc/afpd/nls/Makefile.am @@ -1,8 +1,26 @@ # Makefile.am for etc/afpd/nls/ +EXTRA_DIST = maccode.437 maccode.850 maccode.iso8859-1 bin_PROGRAMS = makecode parsecode makecode_SOURCES = makecode.c parsecode_SOURCES = parsecode.c -CFLAGS = @CFLAGS@ -I../../../include -I../../../sys -I.. +CFLAGS = @CFLAGS@ -I$(top_builddir)/include -I$(top_builddir)/sys -I.. + +# +# install/install-strip: +# + +install-data-local: makecode + ./makecode; \ + mkdir -p $(DESTDIR)@CONFIG_DIR@/nls; \ + $(INSTALL) maccode.* $(DESTDIR)@CONFIG_DIR@/nls/ + +# +# cleanup +# + +clean distclean clean-recursive distclean-recursive: + $(RM) maccode.* *.o core makecode parsecode +