diff options
Diffstat (limited to 'src/lib/crypto/os')
| -rw-r--r-- | src/lib/crypto/os/Makefile.in | 39 | ||||
| -rw-r--r-- | src/lib/crypto/os/configure.in | 7 |
2 files changed, 46 insertions, 0 deletions
diff --git a/src/lib/crypto/os/Makefile.in b/src/lib/crypto/os/Makefile.in new file mode 100644 index 000000000..333750843 --- /dev/null +++ b/src/lib/crypto/os/Makefile.in @@ -0,0 +1,39 @@ +SUBDIRS = @SUBDIRS@ + +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) +LDFLAGS = -g + +RM = rm -f +CP = cp +LN = @LN_S@ + +LIBOBJS = @LIBOBJS@ + +BUILDTOP = ../../.. +SRCTOP = $(srcdir)/$(BUILDTOP) + +all:: $(OBJS) + + + +OBJS= rnd_confoun.o localaddr.o ustime.o $(LIBOBJS) + +SRCS= rnd_confoun.c localaddr.c ustime.c + +localaddr.c: ../../krb5/os/localaddr.c + $(LN) ../../krb5/os/localaddr.c $@ + +ustime.c: ../../krb5/os/ustime.c + $(LN) ../../krb5/os/ustime.c $@ + +memmove.c: ../../krb5/posix/memmove.c + $(LN) ../../krb5/posix/memmove.c $@ + + + diff --git a/src/lib/crypto/os/configure.in b/src/lib/crypto/os/configure.in new file mode 100644 index 000000000..f7d18016d --- /dev/null +++ b/src/lib/crypto/os/configure.in @@ -0,0 +1,7 @@ +AC_INIT(configure.in) +CONFIG_RULES +SubdirLibraryRule([${OBJS}]) +KRB_INCLUDE +AC_LN_S +AC_REPLACE_FUNCS(memmove) +AC_OUTPUT(Makefile,[EXTRA_RULES]) |
