diff options
| author | Keith Vetter <keithv@fusion.com> | 1995-05-26 17:25:20 +0000 |
|---|---|---|
| committer | Keith Vetter <keithv@fusion.com> | 1995-05-26 17:25:20 +0000 |
| commit | 2b9478e81d37c35f277f99341a319bcbe84ada65 (patch) | |
| tree | 41e2919b8006b2476cb1f4f92b0d903bfdc056e7 /src/lib | |
| parent | 2680822b238b8a43b19a53202bb10ea48a875d23 (diff) | |
| download | krb5-2b9478e81d37c35f277f99341a319bcbe84ada65.tar.gz krb5-2b9478e81d37c35f277f99341a319bcbe84ada65.tar.xz krb5-2b9478e81d37c35f277f99341a319bcbe84ada65.zip | |
Disabled some of the shared library stuff for the PC
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5891 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/krb5/krb/ChangeLog | 6 | ||||
| -rw-r--r-- | src/lib/krb5/krb/Makefile.in | 13 |
2 files changed, 17 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/ChangeLog b/src/lib/krb5/krb/ChangeLog index 01309d44d..3092270f9 100644 --- a/src/lib/krb5/krb/ChangeLog +++ b/src/lib/krb5/krb/ChangeLog @@ -1,3 +1,9 @@ +Fri May 26 10:18:28 1995 Keith Vetter (keithv@fusion.com) + + * makefile.in: removed for the PC creating shared directory. + (still bug with the '@SHARED_RULE@' line but I'm waiting + on tytso for that since I don't want to break Unix). + Thu May 25 09:58:42 1995 Ezra Peisach <epeisach@kangaroo.mit.edu> * gc_via_tkt.c (krb5_kdcrep2creds): Fix syntax error in the diff --git a/src/lib/krb5/krb/Makefile.in b/src/lib/krb5/krb/Makefile.in index 7bc79b9c2..154e5aca2 100644 --- a/src/lib/krb5/krb/Makefile.in +++ b/src/lib/krb5/krb/Makefile.in @@ -134,7 +134,11 @@ SRCS= $(srcdir)/addr_comp.c \ $(srcdir)/unparse.c \ $(srcdir)/walk_rtree.c -all:: shared $(OBJS) +all:: all-$(WHAT) $(OBJS) + +all-unix:: shared +all-mac:: shared +all-windows:: shared: mkdir shared @@ -177,7 +181,12 @@ check-mac:: $(TEST_PROGS) check-windows:: -clean:: +clean:: clean-$(WHAT) $(RM) t_walk_rtree$(EXEEXT) t_walk_rtree.$(OBJEXT) $(RM) t_kerb$(EXEEXT) t_kerb.$(OBJEXT) + +clean-unix:: + $(RM) shared/* +clean-mac:: $(RM) shared/* +clean-windows:: |
