mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
02c78a9c21
compile 1) remove rubbish no longer needed 2) correct existing Makefiles 3) add new makefiles where needed 4) correct code, header files and man pages where necessary PLEASE NOTE - after this you will need to make install in eBones/include, and mamake obj depend all install in eBones/lib before doing a make obj depend all install in eBones/. (I am going 6to fix src/Makefile next) PS - I hate slow international links - apologies for all the typos
12 lines
275 B
Makefile
12 lines
275 B
Makefile
# From: @(#)Makefile 5.1 (Berkeley) 6/25/90
|
|
# $Id: Makefile,v 1.4 1995/09/07 20:53:47 mark Exp $
|
|
|
|
PROG= ksrvtgt
|
|
CFLAGS+=-DKERBEROS -DDEBUG -I${.CURDIR}/../../include -Wall
|
|
DPADD= ${LIBKRB} ${LIBDES}
|
|
LDADD= -lkrb -ldes
|
|
BINDIR= /usr/bin
|
|
MAN1= ksrvtgt.1
|
|
|
|
.include <bsd.prog.mk>
|