SCM Repository
Annotation of /branches/lamont_dev/Makefile.in
Parent Directory
|
Revision Log
Revision 1697 - (view) (download)
1 : | jhr | 321 | # Makefile for diderot system |
2 : | # | ||
3 : | jhr | 435 | # COPYRIGHT (c) 2010 The Diderot Project (http://diderot-language.cs.uchicago.edu) |
4 : | jhr | 321 | # All rights reserved. |
5 : | # | ||
6 : | |||
7 : | SHELL = @SHELL@ | ||
8 : | @SET_MAKE@ | ||
9 : | |||
10 : | BUILD_DIRS = src/dnorm \ | ||
11 : | jhr | 1116 | src/compiler \ |
12 : | jhr | 1232 | src/lib/build |
13 : | jhr | 321 | |
14 : | .PHONY: help build local-install \ | ||
15 : | clean local-distclean local-devclean | ||
16 : | |||
17 : | help: | ||
18 : | @echo "This Makefile supports the following targets:" | ||
19 : | @echo " help -- print this message." | ||
20 : | @echo " build -- build Diderot tools and libraries" | ||
21 : | @echo " local-install -- install Diderot tools and libraries in " | ||
22 : | @echo " @DIDEROT_ROOT@/bin" | ||
23 : | @echo " clean -- remove intermediate files generated during building" | ||
24 : | @echo " distclean -- remove files generated during configuration" | ||
25 : | @echo " and building; the resulting tree has the same" | ||
26 : | @echo " files as the distribution." | ||
27 : | @echo "The following additional targets are primarily for developers:" | ||
28 : | glk | 1306 | @echo " devclean -- remove everything that is not part of the SVN" |
29 : | jhr | 321 | @echo " repository." |
30 : | |||
31 : | local-install: | ||
32 : | for dir in $(BUILD_DIRS); do \ | ||
33 : | (cd $$dir && $(MAKE) local-install) || exit $$?; \ | ||
34 : | done | ||
35 : | |||
36 : | build: | ||
37 : | for dir in $(BUILD_DIRS); do \ | ||
38 : | (cd $$dir && $(MAKE) build) || exit $$?; \ | ||
39 : | done | ||
40 : | |||
41 : | jhr | 1640 | doc: |
42 : | (cd doc; $(MAKE)) | ||
43 : | |||
44 : | jhr | 321 | #################### Cleanup #################### |
45 : | |||
46 : | jhr | 1640 | CLEAN_SUBDIRS = $(BUILD_DIRS) test/MIP test/probe doc |
47 : | jhr | 321 | |
48 : | CLEAN_FILES = | ||
49 : | |||
50 : | jhr | 1116 | DISTCLEAN_FILES += Makefile config.status config.log \ |
51 : | jhr | 321 | autom4te*.cache \ |
52 : | jhr | 1232 | bin \ |
53 : | lib \ | ||
54 : | jhr | 1640 | src/include/Diderot/config.h \ |
55 : | src/compiler/gen/file2str/file2str.sh | ||
56 : | jhr | 321 | |
57 : | jhr | 1232 | DEVCLEAN_FILES = configure \ |
58 : | config/config_h.in | ||
59 : | jhr | 321 | |
60 : | include @DIDEROT_MKDIR@/clean-rules.gmk |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |