xref: /original-bsd/old/athena/register/Makefile (revision e61fc7ea)
1#
2# Copyright (c) 1988 Regents of the University of California.
3# All rights reregisterded.
4#
5# Redistribution and use in source and binary forms are permitted
6# provided that the above copyright notice and this paragraph are
7# duplicated in all such forms and that any documentation, advertising
8# materials, and other materials related to such redistribution and
9# use acknowledge that the software was developed by the University
10# of California, Berkeley.  The name of the University may not be
11# used to endorse or promote products derived from this software
12# without specific prior written permission.  THIS SOFTWARE IS PROVIDED
13# ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
14# WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND
15# FITNESS FOR A PARTICULAR PURPOSE.
16#
17# @(#)Makefile	5.3 (Berkeley) 9/20/88
18#
19
20CFLAGS=	-O -DKERBEROS
21LIBC=	/lib/libc.a
22SRC1=	registerd.c
23OBJ1=	registerd.o
24SRC2=	register.c
25OBJ2=	register.o
26SRC3=	make_keypair.c
27OBJ3=	make_keypair.o
28OBJS=	register.o registerd.o make_keypair.o
29MAN=	register.0 registerd.0 make_keypair.0
30
31all: registerd register make_keypair
32
33registerd: ${OBJ1} ${LIBC}
34	${CC} -o $@ ${CFLAGS} ${OBJ1} -lutil -lkdb -lkrb -ldes -lkrb
35
36register: ${OBJ2} ${LIBC}
37	${CC} -o $@ ${CFLAGS} ${OBJ2} -lutil -lkrb -ldes -lkrb
38
39make_keypair: ${OBJ3} ${LIBC}
40	${CC} -o $@ ${CFLAGS} ${OBJ3} -lutil -lkdb -lkrb -ldes
41
42clean:
43	rm -f ${OBJS} core registerd register make_keypair
44
45cleandir: clean
46	rm -f ${MAN} tags .depend
47
48depend: ${SRC1} ${SRC2} ${SRC3}
49	mkdep -p ${CFLAGS} ${SRC1} ${SRC2} ${SRC3}
50
51#install: ${MAN}
52install:
53	install -s -o bin -g bin -m 755 registerd ${DESTDIR}/usr/libexec
54	install -s -o root -g bin -m 4755 register ${DESTDIR}/usr/athena/register
55	install -c -o bin -g bin -m 444 registerd.0 ${DESTDIR}/usr/man/cat8
56	install -c -o bin -g bin -m 444 register.0 ${DESTDIR}/usr/man/cat1
57	install -c -o bin -g bin -m 444 make_keypair.0 ${DESTDIR}/usr/man/cat8
58
59lint: ${SRC1} ${SRC2} ${SRC3}
60	lint ${CFLAGS} ${SRC1} ${SRC2} ${SRC3}
61
62tags: ${SRC1} ${SRC2} ${SRC3}
63	ctags ${SRC1} ${SRC2} ${SRC3}
64