mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
0796de43ea
The last references to these objects were removed with commit
3828c257ae
"dead-code-and-prototyes-20060214".
A few mentions of CBS and BBS are left in the documentation as
historical references:
- doc/man-pages/pod1/rxgen.pod
- src/kauth/AuthServer.mss
Change-Id: Ia24eef7bb1509ff10d11de5c51e688e27f69417a
Reviewed-on: https://gerrit.openafs.org/13324
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
84 lines
2.1 KiB
Plaintext
84 lines
2.1 KiB
Plaintext
# Copyright 2000, International Business Machines Corporation and others.
|
|
# All Rights Reserved.
|
|
#
|
|
# This software has been released under the terms of the IBM Public
|
|
# License. For details, see the LICENSE file in the top-level source
|
|
# directory or online at http://www.openafs.org/dl/license10.html
|
|
|
|
AFSDEV_AUXCDEFINES = -DAFS_PTHREAD_ENV -DRXDEBUG
|
|
|
|
RELDIR=tests\rpctestlib
|
|
!INCLUDE $(AFSROOT)\src\config\NTMakefile.$(SYS_NAME)
|
|
!INCLUDE $(AFSROOT)\src\config\NTMakefile.version
|
|
|
|
SRC_DIR = .
|
|
|
|
############################################################################
|
|
# Build rpc_test.lib and xmpl_driver.exe
|
|
|
|
EXEFILE = $(OUT)\xmpl_driver.exe
|
|
LIBFILE = $(OUT)\rpc_test.lib
|
|
|
|
RTL = $(AFSROOT)\tests\rpctestlib
|
|
RX = $(AFSROOT)\src\rx
|
|
VICED = $(AFSROOT)\src\viced
|
|
UTIL = $(AFSROOT)\src\util
|
|
FSINT = $(AFSROOT)\src\fsint
|
|
|
|
HEADERS = $(RTL)\rpc_test_procs.h
|
|
|
|
RXOBJS = $(OUT)\xdr_int64.obj \
|
|
$(OUT)\xdr_int32.obj
|
|
|
|
RTLOBJS= $(OUT)\rpc_test_procs.obj $(OUT)\rpc_test_cb_procs.obj
|
|
|
|
FSINTOBJS = $(OUT)\afscbint.ss.obj $(OUT)\afsint.cs.obj \
|
|
$(OUT)\afscbint.xdr.obj $(OUT)\afsint.xdr.obj
|
|
|
|
LIBOBJS = $(RTLOBJS) $(FSINTOBJS) $(RXOBJS)
|
|
|
|
EXEOBJS = $(OUT)\rpc_test_main.obj
|
|
|
|
all: $(EXEFILE)
|
|
|
|
$(RTLOBJS) $(OUT)\rpc_test_main.obj: $(RTL)\$$(@B).c $(HEADERS)
|
|
$(C2OBJ) -I$(RTL) $**
|
|
|
|
$(RXOBJS): $(RX)\$$(@B).c
|
|
$(C2OBJ) -I$(RX) $**
|
|
|
|
$(FSINTOBJS): $(FSINT)\$$(@B).C
|
|
$(C2OBJ) -I$(FSINT) $**
|
|
|
|
$(LIBFILE): $(LIBOBJS)
|
|
$(LIBARCH)
|
|
|
|
EXELIBS = \
|
|
$(DESTDIR)\lib\afsauthent.lib \
|
|
$(DESTDIR)\lib\afsrpc.lib \
|
|
$(DESTDIR)\lib\afs\afscmd.lib \
|
|
$(DESTDIR)\lib\afs\afsaudit.lib \
|
|
$(DESTDIR)\lib\afs\afscom_err.lib \
|
|
$(DESTDIR)\lib\afs\afsreg.lib \
|
|
$(DESTDIR)\lib\afs\afsprocmgmt.lib \
|
|
$(DESTDIR)\lib\afs\afseventlog.lib \
|
|
$(DESTDIR)\lib\afs\mtafsutil.lib \
|
|
$(DESTDIR)\lib\afs\mtafsvol.lib \
|
|
$(DESTDIR)\lib\afs\mtafsvldb.lib \
|
|
$(DESTDIR)\lib\afspthread.lib \
|
|
$(DESTDIR)\lib\afsroken.lib
|
|
|
|
$(EXEFILE): $(EXEOBJS) $(EXELIBS) $(LIBFILE)
|
|
$(EXECONLINK)
|
|
$(_VC_MANIFEST_EMBED_EXE)
|
|
$(EXEPREP)
|
|
$(CODESIGN_USERLAND)
|
|
$(SYMSTORE_IMPORT)
|
|
|
|
install: $(EXEFILE)
|
|
|
|
mkdir:
|
|
$(ECHO) "(mkdir: no target)"
|
|
clean::
|
|
-$(DEL) $(EXEFILE) $(LIBFILE) $(LIBOBJS) $(EXEOBJS)
|