-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (25 loc) · 813 Bytes
/
Makefile
File metadata and controls
31 lines (25 loc) · 813 Bytes
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
# Note: zlib-1.2.2 and RAPID201 are not included in this package.
#
# You will need to download and install them separately. zlib is already
# installed on many systems.
#
# See Makefile.definitions file for variables that specify the locations
# of the libraries and header files.
SUBDIRS = zlib-1.2.3 RAPID201 nifti util contrack_gen contrack_score quench
SUBDIR_MAKERULE= \
if test ! -d $$d; then \
if test "$(NOSUBMESG)" = "" ; then \
echo "**** WARNING: $$d: No such directory. **** "; \
fi \
else \
echo " (cd $$d; $(MAKE) $${RULE:=$@})"; \
(cd $$d; ${MAKE} $${RULE:=$@}); \
fi
default:
@for d in $(SUBDIRS); do $(SUBDIR_MAKERULE); done
clean:
@for d in $(SUBDIRS); do $(SUBDIR_MAKERULE); done
util:
@for d in util; do $(SUBDIR_MAKERULE); done
contrack_gen:
do $(SUBDIR_MAKERULE);