SCM Repository
[diderot] / branches / staging / Makefile.in |
View of /branches/staging/Makefile.in
Parent Directory
|
Revision Log
Revision 1935 -
(download)
(annotate)
Fri Jun 29 20:46:46 2012 UTC (8 years, 8 months ago) by jhr
File size: 1790 byte(s)
Fri Jun 29 20:46:46 2012 UTC (8 years, 8 months ago) by jhr
File size: 1790 byte(s)
Continuing to merge changes from vis12 branch into staging
# 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 SVN" @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 doc: (cd doc; $(MAKE)) #################### Cleanup #################### CLEAN_SUBDIRS = $(BUILD_DIRS) test/MIP test/probe doc CLEAN_FILES = DISTCLEAN_FILES += Makefile config.status config.log \ autom4te*.cache \ bin \ lib \ rtest/scripts/run.sh \ rtest/scripts/run-one.sh \ src/include/Diderot/config.h \ src/compiler/gen/file2str/file2str.sh 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 |