Revision 24621,
724 bytes
checked in by broder, 15 years ago
(diff) |
In discuss:
* Add a working distclean target.
|
Rev | Line | |
---|
[12439] | 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@ |
---|
[24618] | 8 | INSTALL_DATA=@INSTALL_DATA@ |
---|
| 9 | MKDIR_P=@MKDIR_P@ |
---|
[12439] | 10 | srcdir=@srcdir@ |
---|
| 11 | top_srcdir=@top_srcdir@ |
---|
| 12 | prefix=@prefix@ |
---|
[24618] | 13 | datarootdir=@datarootdir@ |
---|
[12439] | 14 | mandir=@mandir@ |
---|
| 15 | |
---|
| 16 | SUBDIRS=ets include usp libds server client mclient edsc dsgrep |
---|
| 17 | |
---|
[24621] | 18 | all clean depend install distclean:: |
---|
[12439] | 19 | for i in ${SUBDIRS}; \ |
---|
| 20 | do echo making $@ in $$i; \ |
---|
| 21 | (cd $$i; ${MAKE} $@) || exit 1; \ |
---|
| 22 | done |
---|
| 23 | |
---|
| 24 | install:: |
---|
[24618] | 25 | ${MKDIR_P} ${DESTDIR}${mandir}/man1 |
---|
| 26 | ${INSTALL_DATA} ${srcdir}/discuss.1 ${DESTDIR}${mandir}/man1 |
---|
[12439] | 27 | |
---|
[24621] | 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.