SCM Repository
View of /branches/vis12/src/lib/build/Makefile.in
Parent Directory
|
Revision Log
Revision 1115 -
(download)
(annotate)
Thu May 5 04:42:18 2011 UTC (9 years, 10 months ago) by jhr
Original Path: trunk/src/lib/build/Makefile.in
File size: 838 byte(s)
Thu May 5 04:42:18 2011 UTC (9 years, 10 months ago) by jhr
Original Path: trunk/src/lib/build/Makefile.in
File size: 838 byte(s)
More merging of pure-cfg back into trunk
# 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 |