-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
95 lines (77 loc) · 2.59 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Makefile for diderot system
#
# This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu)
#
# COPYRIGHT (c) 2015 The University of Chicago
# All rights reserved.
#
SHELL = @SHELL@
@SET_MAKE@
INSTALL = @INSTALL@
ifeq (@LOGGING_ENABLED@,true)
BUILD_DIRS = src/logging/gen
endif
BUILD_DIRS += src/compiler \
src/lib/build
INSTALL_DIR = @prefix@
# add OpenCL specific targets
#
# FIXME
#
#ifeq (@CL_ENABLED@,true)
#BUILD_DIRS += src/clinfo
#endif
.PHONY: help build local-install 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, libraries, and headers in "
@echo " @DIDEROT_ROOT@/{bin,lib,include}"
@echo " install -- install Diderot tools, libraries, and headers in "
@echo " @INSTALL_ROOT@/{bin,lib,include}"
@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
mkdir -p include/diderot
(cd src/lib/include/diderot/; cp -p *.h *.hxx ../../../../include/diderot) || exit $$?
install:
mkdir -p $(INSTALL_DIR)
for dir in $(BUILD_DIRS); do \
(cd $$dir && $(MAKE) install) || exit $$?; \
done
mkdir -p $(INSTALL_DIR)/include/diderot
(cd src/lib/include/diderot/; cp -p *.h *.hxx $(INSTALL_DIR)/include/diderot) || exit $$?
build:
for dir in $(BUILD_DIRS); do \
(cd $$dir && $(MAKE) build) || exit $$?; \
done
doc:
(cd doc; $(MAKE))
#################### Cleanup ####################
CLEAN_SUBDIRS = $(BUILD_DIRS)
CLEAN_FILES = rtest/tests/*/out.nrrd
DISTCLEAN_FILES += Makefile config.status config.log \
autom4te*.cache \
bin \
lib \
include \
rtest/scripts/run.sh \
rtest/scripts/run-one.sh \
rtest/log.* \
rtest/report.* \
src/lib/include/diderot/config.h \
src/lib/include/diderot/log-events.hxx \
src/lib/include/diderot/logging.hxx
DEVCLEAN_FILES = configure \
config/config_h.in
include @DIDEROT_MKDIR@/clean-rules.gmk