Makefile.am revision e83ac88a
1# 
2#  Copyright 2005  Red Hat, Inc.
3# 
4#  Permission to use, copy, modify, distribute, and sell this software
5#  and its documentation for any purpose is hereby granted without fee,
6#  provided that the above copyright notice appear in all copies and that
7#  both that copyright notice and this permission notice appear in
8#  supporting documentation, and that the name of Red Hat not be used in
9#  advertising or publicity pertaining to distribution of the software
10#  without specific, written prior permission.  Red Hat makes no
11#  representations about the suitability of this software for any
12#  purpose.  It 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
16#  NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
18#  USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
19#  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20#  PERFORMANCE OF THIS SOFTWARE.
21
22bin_PROGRAMS = mkfontscale
23
24AM_CPPFLAGS = @MKFONTSCALE_CFLAGS@ @X11_CFLAGS@ -D_BSD_SOURCE
25AM_CFLAGS = $(CWARNFLAGS)
26mkfontscale_LDADD  = @MKFONTSCALE_LIBS@
27
28mkfontscale_SOURCES = \
29	data.h \
30	hash.c \
31	hash.h \
32	ident.c \
33	ident.h \
34	list.c \
35	list.h \
36	mkfontscale.c
37
38appman_PRE = mkfontscale.man
39
40appmandir = $(APP_MAN_DIR)
41
42appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
43
44EXTRA_DIST = $(appman_PRE)
45CLEANFILES = $(appman_DATA)
46
47SED = sed
48
49# Strings to replace in man pages
50XORGRELSTRING = @PACKAGE_STRING@
51  XORGMANNAME = X Version 11
52
53MAN_SUBSTS = \
54	-e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
55	-e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
56	-e 's|__xservername__|Xorg|g' \
57	-e 's|__xconfigfile__|xorg.conf|g' \
58	-e 's|__projectroot__|$(prefix)|g' \
59	-e 's|__apploaddir__|$(appdefaultdir)|' \
60	-e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
61	-e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \
62	-e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
63	-e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
64	-e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
65
66SUFFIXES = .$(APP_MAN_SUFFIX) .man
67
68.man.$(APP_MAN_SUFFIX):
69	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
70
71.PHONY: ChangeLog
72
73ChangeLog:
74	$(CHANGELOG_CMD)
75
76dist-hook: ChangeLog
77
78if LINT
79ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
80		$(AM_CPPFLAGS) $(CPPFLAGS)
81
82lint:
83	$(LINT) $(ALL_LINT_FLAGS) $(mkfontscale_SOURCES)
84endif LINT
85