Makefile.am revision fd7d9bd3
1# 2# Copyright 2005 Red Hat, Inc. 3# 4# Permission to use, copy, modify, distribute, and sell this software and its 5# documentation for any purpose is hereby granted without fee, provided that 6# the above copyright notice appear in all copies and that both that 7# copyright notice and this permission notice appear in supporting 8# documentation, and that the name of Red Hat not be used in 9# advertising or publicity pertaining to distribution of the software without 10# specific, written prior permission. Red Hat makes no 11# representations about the suitability of this software for any purpose. It 12# is provided "as is" without express or implied warranty. 13# 14# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20# PERFORMANCE OF THIS SOFTWARE. 21 22AM_YFLAGS = -d 23 24bin_PROGRAMS = xgc 25 26xgc_CFLAGS = $(XGC_CFLAGS) -D_BSD_SOURCE 27xgc_LDADD = $(XGC_LIBS) -lm 28 29xgc_SOURCES = \ 30 choice.c \ 31 constants.h \ 32 dashlist.c \ 33 getfile.c \ 34 gram.y \ 35 interpret.c \ 36 lex.l \ 37 main.c \ 38 main.h \ 39 planemask.c \ 40 record.c \ 41 testfrac.c \ 42 tests.c \ 43 text.c \ 44 xgc.h 45 46appman_PRE = \ 47 xgc.man 48 49BUILT_SOURCES = gram.h gram.c lex.c 50MAINTAINERCLEANFILES = $(BUILT_SOURCES) 51 52gram.h: gram.c 53 54# App default files (*.ad) 55 56appdefaultdir = @appdefaultdir@ 57 58 59APPDEFAULTFILES = \ 60 Xgc 61 62SUFFIXES = .ad 63 64.ad: 65 cp $< $@ 66 67appdefault_DATA = $(APPDEFAULTFILES) 68 69EXTRA_DIST = $(APPDEFAULTFILES:%=%.ad) tile Bugs \ 70 Written/FilledRects \ 71 Written/Interface \ 72 Written/Jim \ 73 Written/Notes \ 74 Written/Notes2 \ 75 Written/Outline \ 76 Written/Widget 77 78CLEANFILES = $(APPDEFAULTFILES) 79 80 81appmandir = $(APP_MAN_DIR) 82 83appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) 84 85EXTRA_DIST += $(appman_PRE) 86CLEANFILES += $(appman_DATA) 87 88SED = sed 89 90# Strings to replace in man pages 91XORGRELSTRING = @PACKAGE_STRING@ 92 XORGMANNAME = X Version 11 93 94MAN_SUBSTS = \ 95 -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ 96 -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ 97 -e 's|__xservername__|Xorg|g' \ 98 -e 's|__xconfigfile__|xorg.conf|g' \ 99 -e 's|__projectroot__|$(prefix)|g' \ 100 -e 's|__apploaddir__|$(appdefaultdir)|' \ 101 -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ 102 -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ 103 -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \ 104 -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \ 105 -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g' 106 107SUFFIXES += .$(APP_MAN_SUFFIX) .man 108 109.man.$(APP_MAN_SUFFIX): 110 sed $(MAN_SUBSTS) < $< > $@ 111