summaryrefslogtreecommitdiff
path: root/clients/zctl/Makefile.in
blob: c9fb8d005fe5c0176ce83a6702d4ed48b3c63425 (plain)
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
SHELL = /bin/sh

prefix=@prefix@
exec_prefix=@exec_prefix@
datadir=@datadir@
confdir=@confdir@
sbindir=@sbindir@
lsbindir=@lsbindir@

includedir=${prefix}/include
mandir=${prefix}/man
libdir=${exec_prefix}/lib
bindir=${exec_prefix}/bin

srcdir=@srcdir@
top_srcdir=@top_srcdir@
BUILDTOP=../..
VPATH=@srcdir@
CC=@CC@
INSTALL=@INSTALL@
MK_CMDS=@MK_CMDS@

DEBUG=-O
CFLAGS=${DEBUG} -I${top_srcdir}/h -I${BUILDTOP}/h @X_CFLAGS@ @CPPFLAGS@
LDFLAGS=${DEBUG} -L${BUILDTOP}/lib/zephyr @ET_LDFLAGS@ @SS_LDFLAGS@ @LDFLAGS@
LIBS=-lzephyr -lss @LIBS@ -lcom_err

OBJS=	zctl.o zctl_cmds.o

all: zctl

zctl: ${OBJS} ${BUILDTOP}/lib/zephyr/libzephyr.a @ETDEP@ @SSDEP@
	${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}

# The Athena mk_cmds insists on writing output to source directory.  Bleah.
# After the patch to fix it goes into an Athena release, replace it with:
#	${MK_CMDS} ${srcdir}/zctl_cmds.ct
zctl_cmds.c: zctl_cmds.ct
	cp ${srcdir}/zctl_cmds.ct /tmp/zctl_cmds.$$$$.ct; \
	${MK_CMDS} /tmp/zctl_cmds.$$$$.ct; \
	if [ -f /tmp/zctl_cmds.$$$$.c ]; then \
		mv /tmp/zctl_cmds.$$$$.c zctl_cmds.c; \
	else \
		mv zctl_cmds.$$$$.c zctl_cmds.c; \
	fi; \
	rm -f /tmp/zctl_cmds.$$$$.ct

check:

install: zctl
	${INSTALL} -m 755 -s zctl ${DESTDIR}${bindir}
	${INSTALL} -m 644 ${srcdir}/zctl.1 ${DESTDIR}${mandir}/man1

clean:
	rm -f ${OBJS} zctl_cmds.c zctl

${OBJS}: ${top_srcdir}/h/sysdep.h ${BUILDTOP}/h/config.h
${OBJS}: ${BUILDTOP}/h/zephyr/zephyr.h ${BUILDTOP}/h/zephyr/zephyr_err.h

.PHONY: all check install clean