-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
74 lines (55 loc) · 1.13 KB
/
Makefile
File metadata and controls
74 lines (55 loc) · 1.13 KB
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
72
# Makefile to be able to install everything by simply using make
all:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -i y
ads:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m ads
asyn:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m asyn
base:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m base
calc:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m calc
cacm:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m cacm
ethercatmc:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m ethercatmc
motor:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m motor
pcas:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m pcas
pvxs:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m pvxs
re2c:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m re2c
Streamdevice:
./checkws.sh
/bin/sh -e -x ./compile-epics.sh -m StreamDevice
clean:
./makeclean.sh clean
distclean:
./makeclean.sh distclean
gitclean:
./makeclean.sh gitclean
help:
@echo make
@echo make asyn
@echo make base
@echo make calc
@echo make cacm
@echo make motor
@echo make ethercatmc
@echo make pcas
@echo make pvxs
@echo make re2c
@echo make Streamdevice