summaryrefslogtreecommitdiffstats
path: root/src/lib/ccapi/windows/NTMakefile
diff options
context:
space:
mode:
authorSam Hartman <hartmans@mit.edu>2006-10-21 20:20:30 +0000
committerSam Hartman <hartmans@mit.edu>2006-10-21 20:20:30 +0000
commitfaa68ad5ae7d1504b8be9e8a7bedb0b6e533d3cd (patch)
tree314105a642beca7c1117bd24b069719e37ac3b35 /src/lib/ccapi/windows/NTMakefile
parentc1c08a16cde35a876a8c7fd36470cc7a1f2536c3 (diff)
downloadkrb5-faa68ad5ae7d1504b8be9e8a7bedb0b6e533d3cd.tar.gz
krb5-faa68ad5ae7d1504b8be9e8a7bedb0b6e533d3cd.tar.xz
krb5-faa68ad5ae7d1504b8be9e8a7bedb0b6e533d3cd.zip
Delete src/lib/ccapi.
The ccapi shipped in 1.6 will not be based off this code and will live in src/ccapi. It will be copied onto the trunk and branch when ready, but this code is being removed before the branch cut. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18731 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/ccapi/windows/NTMakefile')
-rw-r--r--src/lib/ccapi/windows/NTMakefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/ccapi/windows/NTMakefile b/src/lib/ccapi/windows/NTMakefile
deleted file mode 100644
index f6fee6f68..000000000
--- a/src/lib/ccapi/windows/NTMakefile
+++ /dev/null
@@ -1,35 +0,0 @@
-!include <win32.mak>
-
-CFLAGS = -I../include $(cdebug) $(cflags) $(cvarsmt)
-
-CCAPI_SERVER = ccapi_server.exe
-
-CCAPI_DLLFILE = krbcc32.dll
-
-WINLIBS = ws2_32.lib rpcrt4.lib $(guilibsdll)
-
-all: $(CCAPI_DLLFILE) $(CCAPI_SERVER)
-
-ntccrpc_c.c ntccrpc_s.c ntccrpc.h: ntccrpc.idl ntccrpc.acf
- midl ntccrpc.idl /acf ntccrpc.acf
-
-CLIENT_OBJS = ntccrpc_c.obj client.obj dllmain.obj
-
-SERVER_OBJS = ntccrpc_s.obj server.obj
-
-CC_CLIENT_LIB = ..\client\cc_client.lib
-
-CC_COMMON_LIB = ..\common\cc_common.lib
-
-CC_SERVER_LIB = ..\server\cc_server.lib
-
-$(CCAPI_DLLFILE): $(CLIENT_OBJS) $(CC_CLIENT_LIB) $(CC_COMMON_LIB)
- $(link) /NOLOGO /OUT:$@ $(ldebug) $(dlllflags) $(guilibsmt) -def:cacheapi.def $** $(WINLIBS)
-
-$(CCAPI_SERVER): $(SERVER_OBJS) $(CC_SERVER_LIB) $(CC_COMMON_LIB)
- $(link) /NOLOGO $(conlibsmt) $(ldebug) $(conlflags) /OUT:$@ $** $(WINLIBS)
-
-clean:
- del *.exe *.dll *.lib *.exp *.obj ntccrpc_c.c ntccrpc_s.c ntccrpc.h
-
-