1996-08-20 23:46:10 +00:00
|
|
|
# Makefile for GNU CVS auxiliary tools.
|
|
|
|
# Do not use this makefile directly, but only from `../Makefile'.
|
|
|
|
# Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
# any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
# Where to put the manual pages.
|
|
|
|
mandir = $(prefix)/man
|
|
|
|
|
|
|
|
# Use cp if you don't have install.
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
|
|
|
|
DISTFILES = ChangeLog README .cvsignore Makefile.in
|
|
|
|
|
|
|
|
all: Makefile
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
install: all
|
|
|
|
@echo "pcl-cvs not installed"
|
|
|
|
.PHONY: install
|
|
|
|
|
1997-05-15 22:46:24 +00:00
|
|
|
installdirs:
|
|
|
|
.PHONY: installdirs
|
|
|
|
|
1996-08-20 23:46:10 +00:00
|
|
|
tags:
|
|
|
|
.PHONY: tags
|
|
|
|
|
|
|
|
TAGS:
|
|
|
|
.PHONY: TAGS
|
|
|
|
|
|
|
|
ls:
|
|
|
|
@echo $(DISTFILES)
|
|
|
|
.PHONY: ls
|
|
|
|
|
|
|
|
clean:
|
1998-03-10 13:40:57 +00:00
|
|
|
rm -f *.o core
|
1996-08-20 23:46:10 +00:00
|
|
|
.PHONY: clean
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f Makefile pcl-cvs/Makefile
|
|
|
|
.PHONY: distclean
|
|
|
|
|
|
|
|
realclean: distclean
|
|
|
|
.PHONY: realclean
|
|
|
|
|
|
|
|
dist-dir:
|
|
|
|
mkdir ${DISTDIR}
|
|
|
|
for i in ${DISTFILES}; do \
|
|
|
|
ln $(srcdir)/$${i} ${DISTDIR}; \
|
|
|
|
done
|
|
|
|
cd pcl-cvs; ${MAKE} dist-dir DISTDIR="../${DISTDIR}/pcl-cvs"
|
|
|
|
.PHONY: dist-dir
|
|
|
|
|
|
|
|
subdir = tools
|
|
|
|
Makefile: ../config.status Makefile.in
|
|
|
|
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|