SCM Repository
View of /trunk/Makefile.in
Parent Directory
|
Revision Log
Revision 1232 -
(download)
(annotate)
Mon May 16 23:37:52 2011 UTC (9 years, 9 months ago) by jhr
File size: 1579 byte(s)
Mon May 16 23:37:52 2011 UTC (9 years, 9 months ago) by jhr
File size: 1579 byte(s)
Porting many changes from the pure-cfg branch, including value numbering and support for parallel execution on SMP systems.
# Makefile for diderot system # # COPYRIGHT (c) 2010 The Diderot Project (http://diderot-language.cs.uchicago.edu) # All rights reserved. # SHELL = @SHELL@ @SET_MAKE@ BUILD_DIRS = src/dnorm \ src/compiler \ src/lib/build .PHONY: help build local-install \ clean local-distclean local-devclean help: @echo "This Makefile supports the following targets:" @echo " help -- print this message." @echo " build -- build Diderot tools and libraries" @echo " local-install -- install Diderot tools and libraries in " @echo " @DIDEROT_ROOT@/bin" @echo " clean -- remove intermediate files generated during building" @echo " distclean -- remove files generated during configuration" @echo " and building; the resulting tree has the same" @echo " files as the distribution." @echo "The following additional targets are primarily for developers:" @echo " devclean -- remove everything that is not part of the CVS" @echo " repository." local-install: for dir in $(BUILD_DIRS); do \ (cd $$dir && $(MAKE) local-install) || exit $$?; \ done build: for dir in $(BUILD_DIRS); do \ (cd $$dir && $(MAKE) build) || exit $$?; \ done #################### Cleanup #################### CLEAN_SUBDIRS = $(BUILD_DIRS) CLEAN_FILES = DISTCLEAN_FILES += Makefile config.status config.log \ autom4te*.cache \ bin \ lib \ src/include/Diderot/config.h DEVCLEAN_FILES = configure \ config/config_h.in include @DIDEROT_MKDIR@/clean-rules.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |