source: trunk/athena/bin/discuss/Makefile.in @ 24621

Revision 24621, 724 bytes checked in by broder, 14 years ago (diff)
In discuss: * Add a working distclean target.
Line 
1#
2# $Id: Makefile.in,v 1.1 1999-02-02 20:39:39 kcr Exp $
3#
4
5SHELL=/bin/sh
6VPATH=@srcdir@
7INSTALL=@INSTALL@
8INSTALL_DATA=@INSTALL_DATA@
9MKDIR_P=@MKDIR_P@
10srcdir=@srcdir@
11top_srcdir=@top_srcdir@
12prefix=@prefix@
13datarootdir=@datarootdir@
14mandir=@mandir@
15
16SUBDIRS=ets include usp libds server client mclient edsc dsgrep
17
18all clean depend install distclean::
19        for i in ${SUBDIRS}; \
20                do echo making $@ in $$i; \
21                (cd $$i; ${MAKE} $@) || exit 1; \
22        done
23
24install::
25        ${MKDIR_P} ${DESTDIR}${mandir}/man1
26        ${INSTALL_DATA} ${srcdir}/discuss.1 ${DESTDIR}${mandir}/man1
27
28# Doesn't depend on clean because that would run clean target in
29# subdirectories more than once
30distclean::
31        rm -rf config.cache config.log config.status Makefile
Note: See TracBrowser for help on using the repository browser.