forked from mac-can/RusokuCAN.dylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·71 lines (62 loc) · 1.87 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# TouCAN - macOS User-Space Driver for Rusoku TouCAN USB Interfaces
#
# Copyright (C) 2020-2022 Uwe Vogt, UV Software, Berlin ([email protected])
#
# This file is part of MacCAN-TouCAN.
#
# MacCAN-TouCAN is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# MacCAN-TouCAN is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MacCAN-TouCAN. If not, see <http://www.gnu.org/licenses/>.
#
all:
@./build_no.sh
@echo "\033[1mBuilding MacCAN-TouCAN...\033[0m"
$(MAKE) -C Trial $@
$(MAKE) -C Libraries/CANAPI $@
$(MAKE) -C Libraries/TouCAN $@
$(MAKE) -C Utilities/can_test $@
$(MAKE) -C Utilities/can_moni $@
# $(MAKE) -C Tests/CANAPI $@
clean:
$(MAKE) -C Trial $@
$(MAKE) -C Libraries/CANAPI $@
$(MAKE) -C Libraries/TouCAN $@
$(MAKE) -C Utilities/can_test $@
$(MAKE) -C Utilities/can_moni $@
# $(MAKE) -C Tests/CANAPI $@
pristine:
$(MAKE) -C Trial $@
$(MAKE) -C Libraries/CANAPI $@
$(MAKE) -C Libraries/TouCAN $@
$(MAKE) -C Utilities/can_test $@
$(MAKE) -C Utilities/can_moni $@
# $(MAKE) -C Tests/CANAPI $@
install:
# $(MAKE) -C Trial $@
$(MAKE) -C Libraries/CANAPI $@
$(MAKE) -C Libraries/TouCAN $@
# $(MAKE) -C Utilities/can_test $@
# $(MAKE) -C Utilities/can_moni $@
# $(MAKE) -C Tests/CANAPI $@
test:
$(MAKE) -C Trial $@
check:
$(MAKE) -C Trial $@ 2> checker.txt
xctest:
$(MAKE) -C Trial $@
smoketest:
$(MAKE) -C Tests/CANAPI clean all
./Tests/CANAPI/tou_testing --gtest_filter="SmokeTest.*"
build_no:
@./build_no.sh
@cat Sources/build_no.h