# 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 #################### Cleanup #################### CLEAN_SUBDIRS = $(BUILD_DIRS) test/MIP test/probe test/teem 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
Click to toggle
does not end with </html> tag
does not end with </body> tag
The output has ended thus: onfig.h DEVCLEAN_FILES = configure \ config/config_h.in include @DIDEROT_MKDIR@/clean-rules.gmk