Revision 24621,
724 bytes
checked in by broder, 15 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 | |
---|
5 | SHELL=/bin/sh |
---|
6 | VPATH=@srcdir@ |
---|
7 | INSTALL=@INSTALL@ |
---|
8 | INSTALL_DATA=@INSTALL_DATA@ |
---|
9 | MKDIR_P=@MKDIR_P@ |
---|
10 | srcdir=@srcdir@ |
---|
11 | top_srcdir=@top_srcdir@ |
---|
12 | prefix=@prefix@ |
---|
13 | datarootdir=@datarootdir@ |
---|
14 | mandir=@mandir@ |
---|
15 | |
---|
16 | SUBDIRS=ets include usp libds server client mclient edsc dsgrep |
---|
17 | |
---|
18 | all clean depend install distclean:: |
---|
19 | for i in ${SUBDIRS}; \ |
---|
20 | do echo making $@ in $$i; \ |
---|
21 | (cd $$i; ${MAKE} $@) || exit 1; \ |
---|
22 | done |
---|
23 | |
---|
24 | install:: |
---|
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 |
---|
30 | distclean:: |
---|
31 | rm -rf config.cache config.log config.status Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.