Makefile.am revision 62aeb71d
11.13Smartin# 21.5Scgd# Copyright 2005 Red Hat, Inc. 31.12Sthorpej# 41.12Sthorpej# Permission to use, copy, modify, distribute, and sell this software and its 51.3Spk# documentation for any purpose is hereby granted without fee, provided that 61.3Spk# the above copyright notice appear in all copies and that both that 71.12Sthorpej# copyright notice and this permission notice appear in supporting 81.12Sthorpej# documentation, and that the name of Red Hat not be used in 91.12Sthorpej# advertising or publicity pertaining to distribution of the software without 101.12Sthorpej# specific, written prior permission. Red Hat makes no 111.3Spk# representations about the suitability of this software for any purpose. It 121.3Spk# is provided "as is" without express or implied warranty. 131.3Spk# 141.3Spk# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 151.3Spk# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 161.3Spk# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 171.3Spk# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 181.3Spk# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 191.1Spk# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 201.12Sthorpej# PERFORMANCE OF THIS SOFTWARE. 211.12Sthorpej 221.12SthorpejSUBDIRS = man 231.12Sthorpejbin_PROGRAMS = xsetroot 241.12Sthorpej 251.12SthorpejAM_CFLAGS = $(CWARNFLAGS) $(XSETROOT_CFLAGS) 261.12Sthorpejxsetroot_LDADD = $(XSETROOT_LIBS) 271.12Sthorpej 281.12Sthorpejxsetroot_SOURCES = \ 291.12Sthorpej xsetroot.c 301.12Sthorpej 311.1SpkMAINTAINERCLEANFILES = ChangeLog INSTALL 321.1Spk 331.1Spk.PHONY: ChangeLog INSTALL 341.12Sthorpej 351.1SpkINSTALL: 361.1Spk $(INSTALL_CMD) 371.12Sthorpej 381.1SpkChangeLog: 391.12Sthorpej $(CHANGELOG_CMD) 401.12Sthorpej 411.12Sthorpejdist-hook: ChangeLog INSTALL 421.12Sthorpej 431.12Sthorpejif LINT 441.1SpkALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 451.1Spk $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) 46lint: 47 $(LINT) $(ALL_LINT_FLAGS) $(xsetroot_SOURCES) 48endif LINT 49