home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1996-09-28
|
779b
|
32 lines
# Base level Makefile.in for kaffe.
#
# Copyright (c) 1996 Systems Architecture Research Centre,
# City University, London, UK.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
subdirs= @subdirs@
all:
@for i in $(subdirs); do (cd $$i ; $(MAKE) || exit 1) ; done
test: DUMMY
@(cd test ; $(MAKE) test)
clean:
@for i in $(subdirs); do (cd $$i ; $(MAKE) clean) ; done
distclean:
@for i in $(subdirs); do (cd $$i ; $(MAKE) distclean) ; done
rm -f ENVIRONMENT Makefile
rm -f config.cache config.log config.status
-rmdir @subdirs@
install:
@for i in $(subdirs); do (cd $$i ; $(MAKE) install || exit 1) ; done
DUMMY: