From abac0b20e7ff4c0a6bb84ea738e02070b68fbf33 Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Thu, 16 Jun 1994 00:24:12 +0000 Subject: [PATCH] easy appl entries git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3823 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/sample/Makefile.in | 13 +++++++++ src/appl/sample/configure.in | 6 ++++ src/appl/sample/sclient/Makefile.in | 34 ++++++++++++++++++++++ src/appl/sample/sclient/configure.in | 7 +++++ src/appl/sample/sserver/Makefile.in | 34 ++++++++++++++++++++++ src/appl/sample/sserver/configure.in | 7 +++++ src/appl/simple/Makefile.in | 13 +++++++++ src/appl/simple/client/Makefile.in | 33 ++++++++++++++++++++++ src/appl/simple/client/configure.in | 7 +++++ src/appl/simple/configure.in | 6 ++++ src/appl/simple/server/Makefile.in | 33 ++++++++++++++++++++++ src/appl/simple/server/configure.in | 7 +++++ src/appl/user_user/Makefile.in | 42 ++++++++++++++++++++++++++++ src/appl/user_user/configure.in | 7 +++++ 14 files changed, 249 insertions(+) create mode 100644 src/appl/sample/Makefile.in create mode 100644 src/appl/sample/configure.in create mode 100644 src/appl/sample/sclient/Makefile.in create mode 100644 src/appl/sample/sclient/configure.in create mode 100644 src/appl/sample/sserver/Makefile.in create mode 100644 src/appl/sample/sserver/configure.in create mode 100644 src/appl/simple/Makefile.in create mode 100644 src/appl/simple/client/Makefile.in create mode 100644 src/appl/simple/client/configure.in create mode 100644 src/appl/simple/configure.in create mode 100644 src/appl/simple/server/Makefile.in create mode 100644 src/appl/simple/server/configure.in create mode 100644 src/appl/user_user/Makefile.in create mode 100644 src/appl/user_user/configure.in diff --git a/src/appl/sample/Makefile.in b/src/appl/sample/Makefile.in new file mode 100644 index 000000000..2cc270244 --- /dev/null +++ b/src/appl/sample/Makefile.in @@ -0,0 +1,13 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g +LDFLAGS = -g + +SUBDIRS = @SUBDIRS@ + + + diff --git a/src/appl/sample/configure.in b/src/appl/sample/configure.in new file mode 100644 index 000000000..68abe78b9 --- /dev/null +++ b/src/appl/sample/configure.in @@ -0,0 +1,6 @@ +AC_INIT(configure.in) +CONFIG_DIRS(sclient sserver) +MAKE_SUBDIRS("making",all) +MAKE_SUBDIRS("cleaning",clean) +CONFIG_RULES +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/sample/sclient/Makefile.in b/src/appl/sample/sclient/Makefile.in new file mode 100644 index 000000000..5b6449260 --- /dev/null +++ b/src/appl/sample/sclient/Makefile.in @@ -0,0 +1,34 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) $(LOCALINCLUDE) +LDFLAGS = -g + +BUILDTOP=../../.. +SRCTOP = $(srcdir)/$(BUILDTOP) +TOPLIBD = $(BUILDTOP)/lib +ISODELIB=$(TOPLIBD)/libisode.a +COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a +DBMLIB= + +all:: + +KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) + +sclient: sclient.o + $(CC) $(CFLAGS) -o sclient sclient.o $(KLIB) $(LIBS) + +sclient.o: $(srcdir)/sclient.c + +all:: sclient + + +clean:: + $(RM) sclient.o sclient + +install:: + $(INSTALLPROG) sclient ${DESTDIR}$(CLIENT_BINDIR)/sclient + $(INSTALLPROG) sclient.M ${DESTDIR}$(CLIENT_MANDIR)/sclient.$(CLIENT_MANSUFFIX) diff --git a/src/appl/sample/sclient/configure.in b/src/appl/sample/sclient/configure.in new file mode 100644 index 000000000..c1db0af46 --- /dev/null +++ b/src/appl/sample/sclient/configure.in @@ -0,0 +1,7 @@ +AC_INIT(sclient.c) +AC_HAVE_LIBRARY(socket) +AC_HAVE_LIBRARY(nsl) +CONFIG_RULES +KRB_INCLUDE +ISODE_INCLUDE +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/sample/sserver/Makefile.in b/src/appl/sample/sserver/Makefile.in new file mode 100644 index 000000000..59590b606 --- /dev/null +++ b/src/appl/sample/sserver/Makefile.in @@ -0,0 +1,34 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) $(LOCALINCLUDE) +LDFLAGS = -g + +BUILDTOP=../../.. +SRCTOP = $(srcdir)/$(BUILDTOP) +TOPLIBD = $(BUILDTOP)/lib +ISODELIB=$(TOPLIBD)/libisode.a +COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a +DBMLIB= + +all:: + +KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) + +sserver: sserver.o + $(CC) $(CFLAGS) -o sserver sserver.o $(KLIB) $(LIBS) + +sserver.o: $(srcdir)/sserver.c + +all:: sserver + + +clean:: + $(RM) sserver.o sserver + +install:: + $(INSTALLPROG) sserver ${DESTDIR}$(SERVER_BINDIR)/sserver + $(INSTALLPROG) sserver.M ${DESTDIR}$(SERVER_MANDIR)/sserver.$(SERVER_MANSUFFIX) diff --git a/src/appl/sample/sserver/configure.in b/src/appl/sample/sserver/configure.in new file mode 100644 index 000000000..600c1098e --- /dev/null +++ b/src/appl/sample/sserver/configure.in @@ -0,0 +1,7 @@ +AC_INIT(sserver.c) +AC_HAVE_LIBRARY(socket) +AC_HAVE_LIBRARY(nsl) +CONFIG_RULES +KRB_INCLUDE +ISODE_INCLUDE +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/simple/Makefile.in b/src/appl/simple/Makefile.in new file mode 100644 index 000000000..2cc270244 --- /dev/null +++ b/src/appl/simple/Makefile.in @@ -0,0 +1,13 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g +LDFLAGS = -g + +SUBDIRS = @SUBDIRS@ + + + diff --git a/src/appl/simple/client/Makefile.in b/src/appl/simple/client/Makefile.in new file mode 100644 index 000000000..a606349a4 --- /dev/null +++ b/src/appl/simple/client/Makefile.in @@ -0,0 +1,33 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) $(LOCALINCLUDE) +LDFLAGS = -g + +BUILDTOP=../../.. +SRCTOP = $(srcdir)/$(BUILDTOP) +TOPLIBD = $(BUILDTOP)/lib +ISODELIB=$(TOPLIBD)/libisode.a +COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a +DBMLIB= + +all:: + +KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) + +LOCALINCLUDE= -I.. -I$(srcdir)/.. + +sim_client: sim_client.o + $(CC) $(CFLAGS) -o sim_client sim_client.o $(KLIB) $(LIBS) + +sim_client.o: $(srcdir)/sim_client.c + +all:: sim_client + + +clean:: + $(RM) sim_client.o sim_client + diff --git a/src/appl/simple/client/configure.in b/src/appl/simple/client/configure.in new file mode 100644 index 000000000..2bdcf76ae --- /dev/null +++ b/src/appl/simple/client/configure.in @@ -0,0 +1,7 @@ +AC_INIT(sim_client.c) +AC_HAVE_LIBRARY(socket) +AC_HAVE_LIBRARY(nsl) +CONFIG_RULES +KRB_INCLUDE +ISODE_INCLUDE +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/simple/configure.in b/src/appl/simple/configure.in new file mode 100644 index 000000000..2458e9f87 --- /dev/null +++ b/src/appl/simple/configure.in @@ -0,0 +1,6 @@ +AC_INIT(configure.in) +CONFIG_DIRS(client server) +MAKE_SUBDIRS("making",all) +MAKE_SUBDIRS("cleaning",clean) +CONFIG_RULES +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/simple/server/Makefile.in b/src/appl/simple/server/Makefile.in new file mode 100644 index 000000000..c996df3ea --- /dev/null +++ b/src/appl/simple/server/Makefile.in @@ -0,0 +1,33 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) $(LOCALINCLUDE) +LDFLAGS = -g + +BUILDTOP=../../.. +SRCTOP = $(srcdir)/$(BUILDTOP) +TOPLIBD = $(BUILDTOP)/lib +ISODELIB=$(TOPLIBD)/libisode.a +COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a +DBMLIB= + +LOCALINCLUDE= -I.. -I$(srcdir)/.. + +all:: + +KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) + +sim_server: sim_server.o + $(CC) $(CFLAGS) -o sim_server sim_server.o $(KLIB) $(LIBS) + +sim_server.o: $(srcdir)/sim_server.c + +all:: sim_server + + +clean:: + $(RM) sim_server.o sim_server + diff --git a/src/appl/simple/server/configure.in b/src/appl/simple/server/configure.in new file mode 100644 index 000000000..61ade336d --- /dev/null +++ b/src/appl/simple/server/configure.in @@ -0,0 +1,7 @@ +AC_INIT(sim_server.c) +AC_HAVE_LIBRARY(socket) +AC_HAVE_LIBRARY(nsl) +CONFIG_RULES +KRB_INCLUDE +ISODE_INCLUDE +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/appl/user_user/Makefile.in b/src/appl/user_user/Makefile.in new file mode 100644 index 000000000..6764c333a --- /dev/null +++ b/src/appl/user_user/Makefile.in @@ -0,0 +1,42 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) -DDEBUG +LDFLAGS = -g + +BUILDTOP=../.. +SRCTOP = $(srcdir)/$(BUILDTOP) +TOPLIBD = $(BUILDTOP)/lib +ISODELIB=$(TOPLIBD)/libisode.a +COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a +DBMLIB= + +all:: + +KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) + +uuclient: client.o + $(CC) $(CFLAGS) -o uuclient client.o $(KLIB) $(LIBS) + +client.o: $(srcdir)/client.c + +all:: uuclient + + +clean:: + $(RM) client.o uuclient + +uuserver: server.o + $(CC) $(CFLAGS) -o uuserver server.o $(KLIB) $(LIBS) + +server.o: $(srcdir)/server.c + +all:: uuserver + + +clean:: + $(RM) server.o uuserver + diff --git a/src/appl/user_user/configure.in b/src/appl/user_user/configure.in new file mode 100644 index 000000000..aa5084d87 --- /dev/null +++ b/src/appl/user_user/configure.in @@ -0,0 +1,7 @@ +AC_INIT(client.c) +AC_HAVE_LIBRARY(socket) +AC_HAVE_LIBRARY(nsl) +CONFIG_RULES +KRB_INCLUDE +ISODE_INCLUDE +AC_OUTPUT(Makefile,[EXTRA_RULES]) -- 2.26.2