summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2003-01-07 21:42:15 +0000
committerKen Raeburn <raeburn@mit.edu>2003-01-07 21:42:15 +0000
commit15be9332f4eb38c765924d20efae4c0380303907 (patch)
tree67cb14ca5d9f19ecae109ff5f979f0f30672b8ea /src/lib
parent14badd99bf8685d9b39182f2042a1092add57b70 (diff)
nuke old OV makefile stuff
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15088 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/kadm5/Makefile.ov61
-rw-r--r--src/lib/kadm5/unit-test/Makefile.ov154
-rw-r--r--src/lib/rpc/Makefile.ov52
-rw-r--r--src/lib/rpc/unit-test/Makefile.ov101
4 files changed, 0 insertions, 368 deletions
diff --git a/src/lib/kadm5/Makefile.ov b/src/lib/kadm5/Makefile.ov
deleted file mode 100644
index 6b078f777..000000000
--- a/src/lib/kadm5/Makefile.ov
+++ /dev/null
@@ -1,61 +0,0 @@
-TOP = ../../kadmin
-include $(TOP)/config.mk/template
-
-# All but D_REGEXP_TYPE are needed only for logger.c
-CFLAGS += $(D_REGEXP_TYPE) $(D_HAVE_SYSLOG_H) $(D_HAVE_STDARG_H) \
- $(D_HAVE_SYSLOG) $(D_HAVE_VSPRINTF) $(D_HAVE_OPENLOG) \
- $(D_HAVE_CLOSELOG) $(D_HAVE_STRFTIME)
-
-ifdef D_NO_SETENV
-SETENVC = setenv.c
-SETENVO = setenv.o
-endif
-
-SUBDIRS = unit-test
-
-COMMON_SRCS := kadm_err.c adb_err.c chpass_util_strings.c ovsec_glue.c \
- misc_free.c kadm_rpc_xdr.c chpass_util.c alt_prof.c str_conv.c \
- logger.c $(SETENVC)
-COMMON_OBJS := kadm_err.o adb_err.o chpass_util_strings.o ovsec_glue.o \
- misc_free.o kadm_rpc_xdr.o chpass_util.o alt_prof.o str_conv.o \
- logger.o $(SETENVO)
-
-SERVER_SRCS := svr_policy.c svr_principal.c server_kdb.c server_misc.c \
- server_init.c server_dict.c server_acl.c svr_iters.c \
- svr_chpass_util.c
-SERVER_OBJS := svr_policy.o svr_principal.o server_kdb.o server_misc.o \
- server_init.o server_dict.o server_acl.o svr_iters.o \
- svr_chpass_util.o
-DB_SRCS := adb_xdr.c adb_policy.c adb_free.c adb_openclose.c
-DB_OBJS := adb_xdr.o adb_policy.o adb_free.o adb_openclose.o
-
-CLIENT_SRCS := clnt_policy.c client_rpc.c client_principal.c \
- client_init.c clnt_privs.c clnt_chpass_util.c
-CLIENT_OBJS := clnt_policy.o client_rpc.o client_principal.o \
- client_init.o clnt_privs.o clnt_chpass_util.o
-
-HDRS := kadm_rpc.h admin.h admin_xdr.h adb.h admin_internal.h \
- server_internal.h server_acl.h
-HDRS_DIR := kadm5
-ETABLES := chpass_util_strings.et kadm_err.et adb_err.et
-
-SRCS := $(COMMON_SRCS) $(SERVER_SRCS) $(DB_SRCS)
-OBJS := $(COMMON_OBJS) $(SERVER_OBJS) $(DB_OBJS)
-LIB := libkadm5srv.a
-
-expand StageLibrary
-expand Depend
-
-SRCS = $(COMMON_SRCS) $(CLIENT_SRCS)
-OBJS = $(COMMON_OBJS) $(CLIENT_OBJS)
-LIB = libkadm5clnt.a
-
-expand StageLibrary
-expand Depend
-
-expand SubdirTarget
-expand StageIncludes
-expand StageErrorTables
-
-# Not sure if/why this is needed...
-chpass_util.c: chpass_util_strings.h
diff --git a/src/lib/kadm5/unit-test/Makefile.ov b/src/lib/kadm5/unit-test/Makefile.ov
deleted file mode 100644
index 2619d09f8..000000000
--- a/src/lib/kadm5/unit-test/Makefile.ov
+++ /dev/null
@@ -1,154 +0,0 @@
-TOP = ../../../kadmin
-include $(TOP)/config.mk/template
-
-CFLAGS := $(CFLAGS) -DUSE_KADM5_API_VERSION=1
-
-LIBS := $(LIBADMCLNT) $(LIBCOM_ERR) $(LIBRPCLIB) $(LIBDYN) \
- $(LIBGSSAPI_KRB5) $(LIBKDB5) \
- $(LIBKRB5) $(LIBCRYPTO) $(LIBISODE) $(LIBTCL) $(LIBM) \
- $(LIBDB) $(NDBMLIB) $(BSDLIB) $(NETLIB)
-
-INIT_SRCS = init-test.c ../clnt/client_init.c
-DESTROY_SRCS = destroy-test.c
-HANDLE_SRCS = handle-test.c
-RANDKEY_SRCS = randkey-test.c
-ITER_SRCS = iter-test.c
-LOCKTEST_SRCS = lock-test.c
-SIZE_SRCS = sizes-test.c
-
-PROG = init-test
-SRCS = $(INIT_SRCS)
-OBJS = init-test.o client_init.o
-
-client_init.o: ../clnt/client_init.c
- $(CC) $(CFLAGS) -DUSE_KADM5_API_VERSION=2 -DINIT_TEST -c -I.. -I../clnt $<
-
-expand Program
-
-PROG = destroy-test
-SRCS = $(DESTROY_SRCS)
-OBJS = destroy-test.o
-
-expand Program
-
-PROG = client-handle-test
-SRCS = $(HANDLE_SRCS)
-OBJS = handle-test.o
-
-expand Program
-
-PROG = client-iter-test
-SRCS = $(ITER_SRCS)
-OBJS = iter-test.o
-
-expand Program
-
-LIBS := $(LIBADMSRV) $(LIBCOM_ERR) $(LIBRPCLIB) $(LIBDYN) \
- $(LIBGSSAPI_KRB5) $(LIBKDB5) $(LIBKRB5) \
- $(LIBCRYPTO) $(LIBISODE) $(LIBTCL) $(LIBM) $(LIBDB) \
- $(NDBMLIB) $(BSDLIB) $(NETLIB) $(REGEXLIB)
-
-PROG = randkey-test
-SRCS = $(RANDKEY_SRCS)
-OBJS = randkey-test.o
-
-expand Program
-
-PROG = server-handle-test
-SRCS = $(HANDLE_SRCS)
-OBJS = handle-test.o
-
-expand Program
-
-PROG = lock-test
-SRCS = $(LOCKTEST_SRCS)
-OBJS = lock-test.o
-
-expand Program
-
-LIBS := $(LIBS) $(REGEXLIB)
-PROG = server-iter-test
-SRCS = $(ITER_SRCS)
-OBJS = iter-test.o
-
-expand Program
-
-PROG = sizes-test
-SRCS = $(SIZE_SRCS)
-OBJS = sizes-test.o
-
-expand Program
-
-SRCS = $(INIT_SRCS) $(DESTROY_SRCS) $(HANDLE_SRCS) \
- $(RANDKEY_SRCS) $(LOCKTEST_SRCS) $(ITER_SRCS) \
- $(SIZE_SRCS)
-
-expand Depend
-
-unit-test:: unit-test-client unit-test-server
-
-unit-test-client: unit-test-client-setup unit-test-client-body \
- unit-test-client-cleanup
-
-unit-test-server: unit-test-server-setup unit-test-server-body \
- unit-test-server-cleanup
-
-test-randkey:: randkey-test
- ./randkey-test
-
-test-handle-server:: server-handle-test
- ./server-handle-test
-
-test-handle-client:: client-handle-test
- ./client-handle-test
-
-test-noauth: init-test
- ./init-test
-
-test-destroy: destroy-test
- ./destroy-test
-
-test-sizes: sizes-test
- ./sizes-test
-
-unit-test-client-setup::
- $(START_SERVERS)
-
-unit-test-client-cleanup::
- $(STOP_SERVERS)
-
-unit-test-server-setup::
- $(START_SERVERS_LOCAL)
-
-unit-test-server-cleanup::
- $(STOP_SERVERS_LOCAL)
-
-capi.0: api.0
- -rm -f capi.0
- ln -s api.0 capi.0
-
-capi.2: api.2
- -rm -f capi.2
- ln -s api.2 capi.2
-
-unit-test-client-body: capi.0 capi.2 site.exp test-noauth test-destroy test-handle-client test-sizes
- $(RUNTEST) --tool capi API=$(CLNTTCL) KINIT=$(TOP)/../clients/kinit/kinit KDESTROY=$(TOP)/../clients/kdestroy/kdestroy KADMIN_LOCAL=$(TOP)/cli/kadmin.local TOP=$(TOP) RPC=1
-
-sapi.0: api.0
- -rm -f sapi.0
- ln -s api.0 sapi.0
-
-sapi.1: api.1
- -rm -f sapi.1
- ln -s api.1 sapi.1
-
-sapi.2: api.2
- -rm -f sapi.2
- ln -s api.2 sapi.2
-
-unit-test-server-body: sapi.0 sapi.1 sapi.2 site.exp randkey-test test-handle-server \
- lock-test test-sizes
- $(RUNTEST) --tool sapi API=$(SRVTCL) LOCKTEST=./lock-test KADMIN_LOCAL=$(TOP)/cli/kadmin.local TOP=$(TOP) RPC=0
-
-clean::
- $(CLEAN) -r *.log *.plog *.sum *.psum unit-test-log.*
diff --git a/src/lib/rpc/Makefile.ov b/src/lib/rpc/Makefile.ov
deleted file mode 100644
index d64c77e22..000000000
--- a/src/lib/rpc/Makefile.ov
+++ /dev/null
@@ -1,52 +0,0 @@
-#
-# Makefile for librpclib.a.
-#
-# $Id$
-# $Source$
-#
-TOP = ..
-include $(TOP)/config.mk/template
-
-SUBDIRS = unit-test
-
-SRCS = auth_none.c auth_unix.c auth_any.c authunix_prot.c \
- auth_gssapi.c auth_gssapi_misc.c bindresvport.c \
- clnt_generic.c clnt_perror.c clnt_raw.c clnt_simple.c clnt_tcp.c \
- clnt_udp.c rpc_dtablesize.c get_myaddress.c getrpcent.c getrpcport.c \
- pmap_clnt.c pmap_getmaps.c pmap_getport.c pmap_prot.c \
- pmap_prot2.c pmap_rmt.c rpc_prot.c rpc_commondata.c rpc_callmsg.c \
- svc.c svc_auth.c svc_auth_unix.c svc_auth_any.c svc_auth_gssapi.c \
- svc_raw.c svc_run.c svc_simple.c \
- svc_tcp.c svc_udp.c xdr.c xdr_array.c xdr_float.c xdr_mem.c \
- xdr_rec.c xdr_reference.c xdr_stdio.c xdr_alloc.c
-
-OBJS = auth_none.o auth_unix.o auth_any.o authunix_prot.o \
- auth_gssapi.o auth_gssapi_misc.o bindresvport.o \
- clnt_generic.o clnt_perror.o clnt_raw.o clnt_simple.o clnt_tcp.o \
- clnt_udp.o rpc_dtablesize.o get_myaddress.o getrpcent.o getrpcport.o \
- pmap_clnt.o pmap_getmaps.o pmap_getport.o pmap_prot.o \
- pmap_prot2.o pmap_rmt.o rpc_prot.o rpc_commondata.o rpc_callmsg.o \
- svc.o svc_auth.o svc_auth_unix.o svc_auth_any.o svc_auth_gssapi.o \
- svc_raw.o svc_run.o svc_simple.o \
- svc_tcp.o svc_udp.o xdr.o xdr_array.o xdr_float.o xdr_mem.o \
- xdr_rec.o xdr_reference.o xdr_stdio.o xdr_alloc.o
-
-HDRS = auth.h auth_unix.h auth_gssapi.h clnt.h pmap_clnt.h \
- pmap_prot.h pmap_rmt.h rpc.h rpc_msg.h svc.h svc_auth.h types.h xdr.h
-
-HDRS_DIR = rpc
-
-LIB = librpclib.a
-
-CFLAGS := -I.. $(CFLAGS) -DDEBUG_GSSAPI=0 $(D_NEEDS_RPCENT)
-
-expand StageLibrary
-
-expand StageIncludes
-
-expand Depend
-
-expand SubdirTarget
-
-expand Saber
-
diff --git a/src/lib/rpc/unit-test/Makefile.ov b/src/lib/rpc/unit-test/Makefile.ov
deleted file mode 100644
index 3c9ae369d..000000000
--- a/src/lib/rpc/unit-test/Makefile.ov
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1993 OpenVision Technologies, Inc., All Rights Reserved.
-#
-# $Id$
-# $Source$
-#
-# $Log$
-# Revision 1.1 1996/10/15 20:15:02 bjaspan
-# * initial changes to make rpc unit tests work with new build/test
-# system
-#
-# Revision 1.9 1996/07/22 20:41:38 marc
-# this commit includes all the changes on the OV_9510_INTEGRATION and
-# OV_MERGE branches. This includes, but is not limited to, the new openvision
-# admin system, and major changes to gssapi to add functionality, and bring
-# the implementation in line with rfc1964. before committing, the
-# code was built and tested for netbsd and solaris.
-#
-# Revision 1.8.4.1 1996/07/18 04:20:01 marc
-# merged in changes from OV_9510_BP to OV_9510_FINAL1
-#
-# Revision 1.8.2.1 1996/06/20 23:41:48 marc
-# File added to the repository on a branch
-#
-# Revision 1.8 1995/12/07 17:36:54 jik
-# Use "rpc_test" instead of "rpc-test", to avoid problems with rpcgen on
-# some systems. See PR 3553.
-#
-# Revision 1.7 1995/10/02 08:02:49 jik
-# Delete rpc-tset_clnt.c, rpc-test_svc.c and rpc-test.h before creating
-# them, because rpcgen on some platforms won't output to a file that
-# already exists.
-#
-# Revision 1.6 1994/10/24 19:35:57 bjaspan
-# [secure-build/2649: cannot use -L when compiling]
-#
-# Sandbox:
-#
-# [secure-build/2649] don't use -L
-#
-# Revision 1.7 1994/10/11 20:06:14 bjaspan
-# [secure-build/2649] don't use -L
-#
-# Revision 1.6 1994/09/30 22:25:29 jik
-# Don't need to set MDFLAGS to -a anymore, because it's done
-# automatically by the rules now.
-#
-# Revision 1.5 1994/03/22 19:55:34 shanzer
-# change NETLIBS to NETLIB
-#
-# Revision 1.4 1994/03/18 17:47:00 shanzer
-# added NETLIBS and BSDLIB
-#
-# Revision 1.3 1993/12/13 02:00:39 bjaspan
-# recurse to testsuite subdir.
-#
-# Revision 1.2 1993/12/08 21:45:47 bjaspan
-# misc
-#
-# Revision 1.1 1993/11/03 23:53:58 bjaspan
-# Initial revision
-#
-
-TOP = ../..
-include $(TOP)/config.mk/template
-
-SUBDIRS = testsuite
-
-expand SubdirTarget
-
-SRCS = client.c server.c
-
-CFLAGS := -I../.. -I. $(CFLAGS)
-
-#LIBS = ../librpclib.a $(LIBGSSAPI_TRUST) $(LIBDB) $(LIBCOM_ERR) $(LIBDYN)
-LIBS = ../librpclib.a $(LIBGSSAPI_KRB5) $(LIBDB) $(LIBKRB5) \
- $(LIBCRYPTO) $(LIBISODE) $(LIBCOM_ERR) $(LIBDYN) $(BSDLIB) $(NETLIB)
-DEPS = ../librpclib.a rpc_test.h
-DEPENDS = rpc_test.h
-
-PROG = client
-SRCS = client.c
-OBJS = client.o rpc_test_clnt.o
-
-expand Program
-expand Depend
-
-PROG = server
-SRCS = server.c
-OBJS = server.o rpc_test_svc.o
-
-expand Program
-expand Depend
-
-rpc_test.h rpc_test_clnt.c rpc_test_svc.c: rpc_test.x
- -rm -f rpc_test_clnt.c rpc_test_svc.c rpc_test.h
- rpcgen -l rpc_test.x -o rpc_test_clnt.c
- rpcgen -m rpc_test.x -o rpc_test_svc.c
- rpcgen -h rpc_test.x -o rpc_test.h
-
-clean::
- rm -f rpc_test.h rpc_test_clnt.c rpc_test_svc.c