|
|
1.1 ! root 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: ! 20: CFLAGS= -O -DKERBEROS ! 21: LIBC= /lib/libc.a ! 22: SRC1= registerd.c ! 23: OBJ1= registerd.o ! 24: SRC2= register.c ! 25: OBJ2= register.o ! 26: SRC3= make_keypair.c ! 27: OBJ3= make_keypair.o ! 28: OBJS= register.o registerd.o make_keypair.o ! 29: MAN= register.0 registerd.0 make_keypair.0 ! 30: ! 31: all: registerd register make_keypair ! 32: ! 33: registerd: ${OBJ1} ${LIBC} ! 34: ${CC} -o $@ ${CFLAGS} ${OBJ1} -lutil -lkdb -lkrb -ldes -lkrb ! 35: ! 36: register: ${OBJ2} ${LIBC} ! 37: ${CC} -o $@ ${CFLAGS} ${OBJ2} -lutil -lkrb -ldes -lkrb ! 38: ! 39: make_keypair: ${OBJ3} ${LIBC} ! 40: ${CC} -o $@ ${CFLAGS} ${OBJ3} -lutil -lkdb -lkrb -ldes ! 41: ! 42: clean: ! 43: rm -f ${OBJS} core registerd register make_keypair ! 44: ! 45: cleandir: clean ! 46: rm -f ${MAN} tags .depend ! 47: ! 48: depend: ${SRC1} ${SRC2} ${SRC3} ! 49: mkdep -p ${CFLAGS} ${SRC1} ${SRC2} ${SRC3} ! 50: ! 51: #install: ${MAN} ! 52: install: ! 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: ! 59: lint: ${SRC1} ${SRC2} ${SRC3} ! 60: lint ${CFLAGS} ${SRC1} ${SRC2} ${SRC3} ! 61: ! 62: tags: ${SRC1} ${SRC2} ${SRC3} ! 63: ctags ${SRC1} ${SRC2} ${SRC3}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.