forked from mgmarino/OrcaROOT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
29 lines (25 loc) · 909 Bytes
/
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
include buildTools/config.mk
SRCDIRS = Util \
Decoders \
IO \
Processors \
Management \
Applications @PYTHON_BINDINGS@
all:
@echo "Preparing library links..."
$(VERBOSE)mkdir -p lib;\
cd lib;\
ln -sf ../Util/libORUtil.$(SOSUFFIX) \
../Decoders/libORDecoders.$(SOSUFFIX) \
../IO/libORIO.$(SOSUFFIX) \
../Processors/libORProcessors.$(SOSUFFIX) \
../Management/libORManagement.$(SOSUFFIX) \
.;
@# Loop through all directories.
@# This will print out an ERRORHELP message if it detects an error. It will
@# *not* print this out if the compilation was interrupted (CTRL-C).
@for i in $(SRCDIRS); do (echo Entering directory $$i; $(MAKE) --no-print-directory -C $$i) || \
(ret_code=$$?; [ $$ret_code -ne 130 ] && printf $(ERRORHELP); exit $$ret_code) || exit $$?; done
clean:
@rm -rf lib
@for i in $(SRCDIRS); do $(MAKE) --no-print-directory -C $$i clean || exit $$?; done