diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 20:39:09 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 20:39:09 +0000 |
commit | 2387c426e6dfc2b0a2d0aa5585dbeb580f5ea91e (patch) | |
tree | 12721540663213a17c4c6a294f8f9473621fd503 /app/xedit/Makefile.am | |
parent | dc4a2107be04f29ad06d6e60e102370bf68739cd (diff) |
Importing from X.Org 7.2RC2
Diffstat (limited to 'app/xedit/Makefile.am')
-rw-r--r-- | app/xedit/Makefile.am | 235 |
1 files changed, 235 insertions, 0 deletions
diff --git a/app/xedit/Makefile.am b/app/xedit/Makefile.am new file mode 100644 index 000000000..e2acfbb5f --- /dev/null +++ b/app/xedit/Makefile.am @@ -0,0 +1,235 @@ +# +# Copyright 2005 Red Hat, Inc. +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of Red Hat not be used in +# advertising or publicity pertaining to distribution of the software without +# specific, written prior permission. Red Hat makes no +# representations about the suitability of this software for any purpose. It +# is provided "as is" without express or implied warranty. +# +# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR +# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +XEDITDIR = ${libdir}/X11/xedit +xedit_lispdir = ${XEDITDIR}/lisp + +bin_PROGRAMS = xedit +noinst_LIBRARIES = liblisp.a libre.a libmp.a + +# +# libmp.a +# + +libmp_a_CFLAGS = +libmp_a_SOURCES = \ + lisp/mp/mp.c \ + lisp/mp/mp.h \ + lisp/mp/mpi.c \ + lisp/mp/mpr.c + +# +# liblisp.a +# + +liblisp_a_CFLAGS = -I$(top_srcdir)/lisp/re -I$(top_srcdir)/lisp/mp -DLISP -DLISPDIR=\"$(xedit_lispdir)\" $(XEDIT_CFLAGS) +liblisp_a_LIBADD = libmp.a +liblisp_a_SOURCES = \ + lisp/bytecode.c \ + lisp/bytecode.h \ + lisp/core.c \ + lisp/core.h \ + lisp/debugger.c \ + lisp/debugger.h \ + lisp/format.c \ + lisp/format.h \ + lisp/hash.c \ + lisp/hash.h \ + lisp/helper.c \ + lisp/helper.h \ + lisp/internal.h \ + lisp/io.c \ + lisp/io.h \ + lisp/lisp.c \ + lisp/lisp.h \ + lisp/lsp.c \ + lisp/math.c \ + lisp/math.h \ + lisp/package.c \ + lisp/package.h \ + lisp/pathname.c \ + lisp/pathname.h \ + lisp/private.h \ + lisp/read.c \ + lisp/read.h \ + lisp/regex.c \ + lisp/regex.h \ + lisp/require.c \ + lisp/require.h \ + lisp/stream.c \ + lisp/stream.h \ + lisp/string.c \ + lisp/string.h \ + lisp/struct.c \ + lisp/struct.h \ + lisp/time.c \ + lisp/time.h \ + lisp/write.c \ + lisp/write.h \ + lisp/xedit.c \ + lisp/xedit.h + +# +# libre.a +# + +libre_a_CFLAGS = +libre_a_SOURCES = \ + lisp/re/re.c \ + lisp/re/rec.c \ + lisp/re/re.h \ + lisp/re/reo.c \ + lisp/re/rep.h \ + lisp/re/tests.c + +# +# xedit +# + +xedit_CFLAGS = $(XEDIT_CFLAGS) -I$(top_srcdir)/lisp/re -D_BSD_SOURCE -DXEDIT +xedit_LDADD = libre.a liblisp.a libmp.a $(XEDIT_LIBS) -lm + +xedit_SOURCES = \ + commands.c \ + hook.c \ + ispell.c \ + lisp.c \ + options.c \ + realpath.c \ + strcasecmp.c \ + util.c \ + xedit.c \ + xedit.h + +if XAW_USE_XPRINT +xedit_CFLAGS += -DINCLUDE_XPRINT_SUPPORT + +xedit_SOURCES += \ + print.c \ + printdialog.c \ + printdialog.h \ + printdialogprivates.h \ + print.h +endif + +# App default files (*.ad) + +APPDEFAULTFILES = \ + Xedit-color \ + Xedit + +if XAW_USE_XPRINT +Xedit.ad: + cp $(top_srcdir)/Xedit-xprint.ad Xedit.ad +else +Xedit.ad: + cp $(top_srcdir)/Xedit-noxprint.ad Xedit.ad +endif + +SUFFIXES = .ad + +.ad: + cp $< $@ + +appdefaultdir = @appdefaultdir@ +appdefault_DATA = $(APPDEFAULTFILES) + +CLEANFILES = $(APPDEFAULTFILES) Xedit.ad + +# Note that xedit_lispdir is defined above +dist_xedit_lisp_DATA = ${srcdir}/lisp/modules/lisp.lsp \ + ${srcdir}/lisp/modules/xedit.lsp \ + ${srcdir}/lisp/modules/syntax.lsp \ + ${srcdir}/lisp/modules/indent.lsp + +progmodesdir = $(xedit_lispdir)/progmodes +dist_progmodes_DATA = ${srcdir}/lisp/modules/progmodes/c.lsp \ + ${srcdir}/lisp/modules/progmodes/html.lsp \ + ${srcdir}/lisp/modules/progmodes/imake.lsp \ + ${srcdir}/lisp/modules/progmodes/lisp.lsp \ + ${srcdir}/lisp/modules/progmodes/make.lsp \ + ${srcdir}/lisp/modules/progmodes/man.lsp \ + ${srcdir}/lisp/modules/progmodes/patch.lsp \ + ${srcdir}/lisp/modules/progmodes/rpm.lsp \ + ${srcdir}/lisp/modules/progmodes/sgml.lsp \ + ${srcdir}/lisp/modules/progmodes/sh.lsp \ + ${srcdir}/lisp/modules/progmodes/xconf.lsp \ + ${srcdir}/lisp/modules/progmodes/xlog.lsp \ + ${srcdir}/lisp/modules/progmodes/xrdb.lsp + +appman_PRE = xedit.man + +EXTRA_DIST = \ + Xedit-color.ad \ + Xedit-xprint.ad \ + Xedit-noxprint.ad \ + Xedit-sample \ + lisp/README \ + lisp/TODO \ + lisp/compile.c \ + lisp/env.c \ + lisp/mathimp.c \ + lisp/modules/psql.c \ + lisp/modules/x11.c \ + lisp/modules/xaw.c \ + lisp/modules/xt.c \ + lisp/re/README \ + lisp/re/tests.txt \ + lisp/test/hello.lsp \ + lisp/test/list.lsp \ + lisp/test/math.lsp \ + lisp/test/psql-1.lsp \ + lisp/test/psql-2.lsp \ + lisp/test/psql-3.lsp \ + lisp/test/regex.lsp \ + lisp/test/stream.lsp \ + lisp/test/widgets.lsp + +appmandir = $(APP_MAN_DIR) + +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) + +EXTRA_DIST += $(appman_PRE) +CLEANFILES += $(appman_DATA) + +SED = sed + +# Strings to replace in man pages +XORGRELSTRING = @PACKAGE_STRING@ + XORGMANNAME = X Version 11 + +MAN_SUBSTS = \ + -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ + -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ + -e 's|__xservername__|Xorg|g' \ + -e 's|__xconfigfile__|xorg.conf|g' \ + -e 's|__projectroot__|$(prefix)|g' \ + -e 's|__apploaddir__|$(appdefaultdir)|' \ + -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ + -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ + -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \ + -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \ + -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g' + +SUFFIXES += .$(APP_MAN_SUFFIX) .man + +.man.$(APP_MAN_SUFFIX): + sed $(MAN_SUBSTS) < $< > $@ |