CVSROOT: /cvs/cluster Module name: cluster Changes by: [EMAIL PROTECTED] 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