From mboxrd@z Thu Jan 1 00:00:00 1970 From: fabbione@sourceware.org Date: 20 Aug 2007 14:30:57 -0000 Subject: [Cluster-devel] cluster/dlm/man Makefile Message-ID: <20070820143057.11149.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Changes by: fabbione at sourceware.org 2007-08-20 14:30:56 Modified files: dlm/man : Makefile Log message: add clean: target or make clean will fail. use TARGET8 to be consistent with TARGET3 Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/dlm/man/Makefile.diff?cvsroot=cluster&r1=1.4&r2=1.5 --- cluster/dlm/man/Makefile 2007/08/17 18:48:22 1.4 +++ cluster/dlm/man/Makefile 2007/08/20 14:30:56 1.5 @@ -19,14 +19,18 @@ dlm_get_fd.3 dlm_ls_unlock.3 dlm_unlock_wait.3 \ dlm_lock.3 dlm_ls_unlock_wait.3 libdlm.3 +TARGET8 = dlm_tool.8 + all: +clean: + install: install -d ${mandir}/man3 install ${TARGET3} ${mandir}/man3 install -d ${mandir}/man8 - install dlm_tool.8 ${mandir}/man8 + install ${TARGET8} ${mandir}/man8 uninstall: ${UNINSTALL} ${TARGET3} ${mandir}/man3 - ${UNINSTALL} dlm_tool.8 ${mandir}/man8 + ${UNINSTALL} ${TARGET8} ${mandir}/man8