forked from ludwig-cf/ludwig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (33 loc) · 758 Bytes
/
Makefile
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
##############################################################################
#
# Makefile.mk
#
# (c) 2015-2018 The University of Edinburgh
#
# Contributing authors:
# Kevin Stratford (kevin@epcc.ed.ac.uk)
#
##############################################################################
include ./Makefile.mk
default:
$(MAKE) build
# With the current compiler build the current target
serial:
$(MAKE) -C mpi_s test
build:
@echo "Build ${MY_BUILD} -> ${BUILD}"
$(MAKE) -C target
$(MAKE) -C src
$(MAKE) -C tests
$(MAKE) -C util
test:
$(MAKE) -C target test
$(MAKE) -C tests test
unit:
$(MAKE) -C tests/unit test
clean:
$(MAKE) -C mpi_s clean
$(MAKE) -C target clean
$(MAKE) -C src clean
$(MAKE) -C tests clean
$(MAKE) -C util clean