diff options
author | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-07-05 22:51:11 +0000 |
---|---|---|
committer | Søren Sandmann Pedersen <sandmann@daimi.au.dk> | 2005-07-05 22:51:11 +0000 |
commit | bf280e7bc5d6e2c65ea0235fde208274a714d13b (patch) | |
tree | 7d96224012224d5f2c22e213f262f69c980c7863 /Makefile.am | |
parent | 8b721c45d8f8681e59ca145d1ed3839d1b312a99 (diff) |
Add build systems for xlogo, xlsatoms, xlsclients, xmag, xman, xmessage,XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15
xmh, xmore. lib/Xaw/xaw.m4: Add an AM_CONDITIONAL and a shell variable
xaw_use_xprint symlink.sh: add some extra files for xgc, xinit,
xkbcomp, xlogo, xmb, and xmodmap xc/programs/xmore/xmore.c:
Conditionalize use of xprint
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..0ad63c9 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,62 @@ +# +# 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. + +bin_PROGRAMS = xmore + +xmore_CFLAGS = $(DEP_CFLAGS) -DXMORE +xmore_LDADD = $(DEP_LIBS) + +xmore_SOURCES = \ + xmore.c \ + xmore.h + +if XAW_USE_XPRINT +xmore_CFLAGS += -DUSE_XPRINT + +xmore_SOURCES += \ + print.c \ + printdialog.c \ + printdialog.h \ + printdialogprivates.h \ + print.h +endif + +dist_man_MANS = \ + xmore.man + +# App default files (*.ad) + +appdefaultdir = $(sysconfdir)/X11/app-defaults + + +APPDEFAULTFILES = \ + XMore + + +$(APPDEFAULTFILES): %: %.ad + cp $< $@ + +appdefault_DATA = $(APPDEFAULTFILES) + +EXTRA_DIST = $(foreach FILE, $(APPDEFAULTFILES), $(FILE).ad) + +CLEANFILES = $(APPDEFAULTFILES) + |