-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
69 lines (44 loc) · 867 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
all: utility_make mxser
SP1: utility_make mxsersp1
SP2: utility_make mxsersp2
install: clean utility_install driver_install
installsp1: utility_install driver_installsp1
installsp2: utility_install driver_installsp2
clean: driver_clean utility_clean
uninstall: driver_uninstall utility_uninstall
utility_make :
@cd utility;\
make -s
mxser :
@cd driver;\
make -s
mxsersp1 :
@cd driver;\
make SP1 -s
mxsersp2 :
@cd driver;\
make SP2 -s
driver_install:
@cd driver;\
make install -s
driver_installsp1:
@cd driver;\
make installsp1 -s
driver_installsp2:
@cd driver;\
make installsp2 -s
utility_install:
@cd utility;\
make install -s
driver_clean:
@cd driver;\
make clean -s
utility_clean:
@cd utility;\
make clean -s
driver_uninstall:
@cd driver;\
make uninstall -s
utility_uninstall:
@cd utility;\
make uninstall -s