SCM Repository
Annotation of /branches/vis12/src/lib/build/Makefile.in
Parent Directory
|
Revision Log
Revision 1115 -
(view)
(download)
Original Path: trunk/src/lib/build/Makefile.in
1 : | jhr | 1115 | # Makefile |
2 : | # | ||
3 : | # COPYRIGHT (c) 2011 The Diderot Project (http://diderot-language.cs.uchicago.edu) | ||
4 : | # All rights reserved. | ||
5 : | # | ||
6 : | # The Makefile for building all versions of the Diderot runtime system | ||
7 : | # | ||
8 : | # @configure_input@ | ||
9 : | # | ||
10 : | |||
11 : | SHELL = @SHELL@ | ||
12 : | @SET_MAKE@ | ||
13 : | |||
14 : | SUBDIRS = $(wildcard rt-*) | ||
15 : | |||
16 : | .PHONY: build local-install install | ||
17 : | |||
18 : | build: | ||
19 : | for dir in $(SUBDIRS) ; do \ | ||
20 : | (cd $$dir; $(MAKE) build) || exit $$?; \ | ||
21 : | done | ||
22 : | |||
23 : | local-install: | ||
24 : | $(INSTALL) -d $(LIBDIR) | ||
25 : | for dir in $(SUBDIRS); do \ | ||
26 : | (cd $$dir && $(MAKE) local-install) || exit $$?; \ | ||
27 : | done | ||
28 : | |||
29 : | install: | ||
30 : | $(INSTALL) -d $(INSTALL_LIBDIR) | ||
31 : | for dir in $(SUBDIRS); do \ | ||
32 : | (cd $$dir && $(MAKE) install) || exit $$?; \ | ||
33 : | done | ||
34 : | |||
35 : | #################### Cleanup #################### | ||
36 : | |||
37 : | CLEAN_SUBDIRS = $(SUBDIRS) | ||
38 : | DISTCLEAN_FILES = $(SUBDIRS) mk/build.gmk | ||
39 : | DEVCLEAN_FILES = | ||
40 : | |||
41 : | include @DIDEROT_MKDIR@/clean-rules.gmk |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |