-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (27 loc) · 749 Bytes
/
Makefile
File metadata and controls
34 lines (27 loc) · 749 Bytes
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
#Makefile at top of application tree
TOP = ../../../extensions/master
include $(TOP)/configure/CONFIG
# Linux etc.
SCRIPT_CLEAN=./clean-log-server.sh
SCRIPT_BUILD=./build-log-server.sh
SCRIPT_VERIFY=./verify-log-server.sh
# Windows
ifneq ($(findstring windows,$(EPICS_HOST_ARCH)),)
SCRIPT_CLEAN=clean-log-server.bat
SCRIPT_BUILD=build-log-server.bat
SCRIPT_VERIFY=verify-log-server.bat
endif
ifneq ($(findstring win32,$(EPICS_HOST_ARCH)),)
SCRIPT_CLEAN=clean-log-server.bat
SCRIPT_BUILD=build-log-server.bat
SCRIPT_VERIFY=verify-log-server.bat
endif
include $(TOP)/configure/RULES_TOP
# need to clean before build or sometimes get an invalid jar
install:
$(SCRIPT_CLEAN)
$(SCRIPT_BUILD)
$(SCRIPT_VERIFY)
clean:
$(SCRIPT_CLEAN)
uninstall: