forked from GaloisInc/HaLVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (36 loc) · 991 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
42
43
44
45
46
47
# BANNERSTART
# - Copyright 2006-2008, Galois, Inc.
# - This software is distributed under a standard, three-clause BSD license.
# - Please see the file LICENSE, distributed with this software, for specific
# - terms and conditions.
# Author: Adam Wick <[email protected]>
# BANNEREND
#
# This Makefile just forwards off to the other two.
#
all:
$(MAKE) -f mk/infrastructure.mk all
$(MAKE) -f mk/halvm.mk all
docs:
$(MAKE) -f mk/infrastructure.mk all
$(MAKE) -f mk/halvm.mk docs
infrastructure:
$(MAKE) -f mk/infrastructure.mk all
$(MAKE) -f mk/tests.mk all
examples:
$(MAKE) -f mk/tests.mk examples
tests: infrastructure
$(MAKE) -f mk/tests.mk tests
clean:
$(MAKE) -f mk/halvm.mk clean
$(MAKE) -f mk/infrastructure.mk clean
partial-clean:
$(MAKE) -f mk/halvm.mk partial-clean
mrproper:
$(MAKE) -f mk/halvm.mk mrproper
$(MAKE) -f mk/infrastructure.mk mrproper
$(MAKE) -f mk/tests.mk clean
remove-%:
$(MAKE) -f mk/halvm.mk $@
install:
$(MAKE) -f mk/halvm.mk install