SCM Repository
View of /branches/pure-cfg/src/lib/build/Makefile.in
Parent Directory
|
Revision Log
Revision 1093 -
(download)
(annotate)
Wed May 4 17:53:44 2011 UTC (11 years ago) by jhr
File size: 838 byte(s)
Wed May 4 17:53:44 2011 UTC (11 years ago) by jhr
File size: 838 byte(s)
Working on new runtime build infrastructure
# Makefile # # COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) # All rights reserved. # # The Makefile for building all versions of the Diderot runtime system # # @configure_input@ # SHELL = @SHELL@ @SET_MAKE@ SUBDIRS = $(wildcard rt-*) .PHONY: build local-install install build: for dir in $(SUBDIRS) ; do \ (cd $$dir; $(MAKE) build) || exit $$?; \ done local-install: $(INSTALL) -d $(LIBDIR) for dir in $(SUBDIRS); do \ (cd $$dir && $(MAKE) local-install) || exit $$?; \ done install: $(INSTALL) -d $(INSTALL_LIBDIR) for dir in $(SUBDIRS); do \ (cd $$dir && $(MAKE) install) || exit $$?; \ done #################### Cleanup #################### CLEAN_SUBDIRS = $(SUBDIRS) DISTCLEAN_FILES = $(SUBDIRS) mk/build.gmk DEVCLEAN_FILES = include @DIDEROT_MKDIR@/clean-rules.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |