-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (27 loc) · 795 Bytes
/
Makefile
File metadata and controls
41 lines (27 loc) · 795 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
34
35
36
37
38
39
40
41
# Instrument software for the Keck Planet Finder (KPF).
include ./Mk.instrument
override SYSNAM = kss/$(INSTRUMENT)/
override VERNUM = 1.0
DIRS = init.d
# hardware servers
# DIRS += hsowenv hspower hsdewar
DIRS += hsowenv hsdewar
# won't build until after other services are installed.
DIRS +=
## qt needs Qt.
# DIRS += qt
################################################################################
# KROOT boilerplate:
# Include general make rules, using default values for the key environment
# variables if they are not already set.
ifndef KROOT
KROOT = /kroot
endif
ifndef RELNAM
RELNAM = default
endif
ifndef RELDIR
RELDIR = $(KROOT)/rel/$(RELNAM)
endif
include $(KROOT)/etc/config.mk
################################################################################