diff options
| author | Theodore Tso <tytso@mit.edu> | 1996-02-24 05:14:23 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1996-02-24 05:14:23 +0000 |
| commit | c735aa67e8a339fd650a4c261658bbabb47687c7 (patch) | |
| tree | dc33ea170757ee45434a68bd57609e3479f342a1 /src/tests/gssapi/Makefile.in | |
| parent | 1c2b0222833384b4b865f543ab0dcf8328c97a38 (diff) | |
| download | krb5-c735aa67e8a339fd650a4c261658bbabb47687c7.tar.gz krb5-c735aa67e8a339fd650a4c261658bbabb47687c7.tar.xz krb5-c735aa67e8a339fd650a4c261658bbabb47687c7.zip | |
Simple test program for testing how GSSAPI import name works. (May be
made into a more full-fledged test program later.)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7515 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/tests/gssapi/Makefile.in')
| -rw-r--r-- | src/tests/gssapi/Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tests/gssapi/Makefile.in b/src/tests/gssapi/Makefile.in new file mode 100644 index 000000000..fb0e6835f --- /dev/null +++ b/src/tests/gssapi/Makefile.in @@ -0,0 +1,17 @@ +CFLAGS = $(CCOPTS) $(DEFS) $(LOCALINCLUDE) -DUSE_AUTOCONF_H + +SRCS= t_imp_name.c + +OBJS= t_imp_name.o + +all:: t_imp_name + +LOCAL_LIBRARIES = -lgssapi_krb5 +DEPLOCAL_LIBRARIES = $(TOPLIBD)/gssapi/libgssapi_krb5.a + +t_imp_name: t_imp_name.o $(DEPLIBS) + $(LD) $(LDFLAGS) $(LDARGS) -o t_imp_name t_imp_name.o $(LIBS) + +clean:: + $(RM) t_imp_name + |
