SCM Repository
[diderot] / trunk / src / compiler / Makefile.in |
View of /trunk/src/compiler/Makefile.in
Parent Directory
|
Revision Log
Revision 3349 -
(download)
(annotate)
Tue Oct 27 15:16:36 2015 UTC (6 years, 6 months ago) by jhr
File size: 3225 byte(s)
Tue Oct 27 15:16:36 2015 UTC (6 years, 6 months ago) by jhr
File size: 3225 byte(s)
making copyrights consistent for all code in the repository
# Makefile.in # # This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) # # COPYRIGHT (c) 2015 The University of Chicago # All rights reserved. # # @configure_input@ # #### Start of system configuration section. #### # # directories for the install target # PREFIX = @prefix@ INSTALL_BINDIR = $(PREFIX)/bin INSTALL_HEAPDIR = $(INSTALL_BINDIR)/.heap INSTALL_LIBDIR = $(PREFIX)/lib INSTALL_INCDIR = $(PREFIX)/include # # directories for the local-install target # SRCDIR = @DIDEROT_ROOT@/src LIBDIR = @DIDEROT_ROOT@/lib BINDIR = @DIDEROT_ROOT@/bin HEAPDIR = $(BINDIR)/.heap INSTALL = @INSTALL@ SHELL = @SHELL@ @SET_MAKE@ INSTALL_SMLNJ_WRAPPER = @INSTALL_SMLNJ_WRAPPER@ ML_BUILD = @ML_BUILD@ ML_BUILD_FLAGS = -Ctdp.instrument=true \$$smlnj-tdp/back-trace.cm ML_MAKEDEPEND = @ML_MAKEDEPEND@ ML_MAKEDEPEND_FLAGS = #### End of system configuration section. #### PROGRAM = diderotc HEAP_IMAGE = $(PROGRAM).@SMLNJ_HEAP_SUFFIX@ ROOT_CM = driver/sources.cm CM_FILES = ast/sources.cm \ basis/sources.cm \ c-target/sources.cm \ codegen/sources.cm \ common/sources.cm \ driver/sources.cm \ env/sources.cm \ fields/sources.cm \ high-il/sources.cm \ high-to-mid/sources.cm \ IL/sources.cm \ low-il/sources.cm \ mid-il/sources.cm \ mid-to-low/sources.cm \ parser/sources.cm \ simplify/sources.cm \ translate/sources.cm \ tree-il/sources.cm \ typechecker/sources.cm CODE_FRAG_FILES = cl-target/cl-eigen2x2-frag.sml \ cl-target/cl-eigen3x3-frag.sml \ cl-target/cl-header-frag.sml \ cl-target/cl-sched-frag.sml \ cl-target/cl-update-frag.sml .PHONY: local-install local-install: $(HEAP_IMAGE) $(INSTALL_SMLNJ_WRAPPER) $(PROGRAM) $(BINDIR) .PHONY: install install: $(HEAP_IMAGE) $(INSTALL_SMLNJ_WRAPPER) $(PROGRAM) $(INSTALL_BINDIR) .PHONY: build build: $(HEAP_IMAGE) $(HEAP_IMAGE): .depend $(ML_BUILD) $(ML_BUILD_FLAGS) $(ROOT_CM) Main.main $(PROGRAM) touch $(HEAP_IMAGE) .depend: $(CM_FILES) $(CODE_FRAG_FILES) touch .depend $(ML_MAKEDEPEND) $(ML_MAKEDEPEND_FLAGS) -n -f .depend $(ROOT_CM) $(HEAP_IMAGE) # synthesize files for the code fragments # cl-target/cl-eigen2x2-frag.sml: cl-target/fragments/eigen2x2.in gen/file2str/file2str.sh $< CLEigen2x2Frag $@ cl-target/cl-eigen3x3-frag.sml: cl-target/fragments/eigen3x3.in gen/file2str/file2str.sh $< CLEigen3x3Frag $@ cl-target/cl-header-frag.sml: cl-target/fragments/header.in gen/file2str/file2str.sh $< CLHeaderFrag $@ cl-target/cl-sched-frag.sml: cl-target/fragments/sched.in gen/file2str/file2str.sh $< CLSchedFrag $@ cl-target/cl-update-frag.sml: cl-target/fragments/update.in gen/file2str/file2str.sh $< CLUpdateFrag $@ ifneq ($(MAKECMDGOALS),clean) ifneq ($(MAKECMDGOALS),devclean) ifneq ($(MAKECMDGOALS),distclean) sinclude .depend endif endif endif #################### Cleanup #################### CLEAN_SUBDIRS = CLEAN_FILES += $(HEAP_IMAGE) \ */*.grm.sml \ */*.lex.sml \ $(CODE_FRAG_FILES) \ .depend DISTCLEAN_FILES += Makefile \ common/paths.sml \ common/size-of.sml \ nrrd/run-dnorm.sml DEVCLEAN_FILES = include @DIDEROT_MKDIR@/clean-rules.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |