home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-28 | 704 b | 29 lines |
- # Library support
- #
- # 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>, March, June 1996.
-
- INSTALL= @INSTALL@
- INSTALL_DATA= @INSTALL_DATA@
- prefix= @prefix@
- srcdir= @srcdir@
- incdir= @includedir@/kaffe
-
- all:
-
- clean:
-
- distclean:
- rm -f Makefile jtypes.h
-
- install:
- test -d $(incdir) || mkdir -p $(incdir)
- $(INSTALL_DATA) jtypes.h $(incdir)/jtypes.h
- $(INSTALL_DATA) $(srcdir)/native.h $(incdir)/native.h
- $(INSTALL_DATA) $(srcdir)/stubPreamble.h $(incdir)/stubPreamble.h
-