Makefile.am revision 576bae58
114c0a534Smrg# 
214c0a534Smrg#  Copyright 2005  Red Hat, Inc.
314c0a534Smrg# 
414c0a534Smrg#  Permission to use, copy, modify, distribute, and sell this software and its
514c0a534Smrg#  documentation for any purpose is hereby granted without fee, provided that
614c0a534Smrg#  the above copyright notice appear in all copies and that both that
714c0a534Smrg#  copyright notice and this permission notice appear in supporting
814c0a534Smrg#  documentation, and that the name of Red Hat not be used in
914c0a534Smrg#  advertising or publicity pertaining to distribution of the software without
1014c0a534Smrg#  specific, written prior permission.  Red Hat makes no
1114c0a534Smrg#  representations about the suitability of this software for any purpose.  It
1214c0a534Smrg#  is provided "as is" without express or implied warranty.
1314c0a534Smrg# 
1414c0a534Smrg#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
1514c0a534Smrg#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
1614c0a534Smrg#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
1714c0a534Smrg#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
1814c0a534Smrg#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
1914c0a534Smrg#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2014c0a534Smrg#  PERFORMANCE OF THIS SOFTWARE.
2114c0a534Smrg
2214c0a534Smrgbin_PROGRAMS = smproxy
2314c0a534Smrg
24bf2eeab3SmrgAM_CFLAGS = $(CWARNFLAGS) $(SMPROXY_CFLAGS)
2514c0a534Smrgsmproxy_LDADD = $(SMPROXY_LIBS)
2614c0a534Smrg
2714c0a534Smrgsmproxy_SOURCES =	\
2814c0a534Smrg        save.c \
2914c0a534Smrg        smproxy.c \
3014c0a534Smrg        smproxy.h
3114c0a534Smrg
3214c0a534Smrgappman_PRE = \
3314c0a534Smrg        smproxy.man
3414c0a534Smrg
3514c0a534Smrg
3614c0a534Smrgappmandir = $(APP_MAN_DIR)
3714c0a534Smrg
3814c0a534Smrgappman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
3914c0a534Smrg
4014c0a534SmrgEXTRA_DIST = $(appman_PRE)
41576bae58SmrgMAINTAINERCLEANFILES = ChangeLog INSTALL
4214c0a534SmrgCLEANFILES = $(appman_DATA)
4314c0a534Smrg
4414c0a534SmrgSUFFIXES = .$(APP_MAN_SUFFIX) .man
4514c0a534Smrg
46576bae58Smrg# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
4714c0a534Smrg.man.$(APP_MAN_SUFFIX):
48bf2eeab3Smrg	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
49bf2eeab3Smrg
50bf2eeab3Smrg
51576bae58Smrg.PHONY: ChangeLog INSTALL
52576bae58Smrg
53576bae58SmrgINSTALL:
54576bae58Smrg	$(INSTALL_CMD)
55bf2eeab3Smrg
56bf2eeab3SmrgChangeLog:
57bf2eeab3Smrg	$(CHANGELOG_CMD)
58bf2eeab3Smrg
59576bae58Smrgdist-hook: ChangeLog INSTALL
60