diff options
author | Keith Vetter <keithv@fusion.com> | 1995-06-03 02:46:46 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-06-03 02:46:46 +0000 |
commit | a6193eaae4caab349681cf43405cf9fc323efabc (patch) | |
tree | 4e49c0c0ec9e03ebb429f23f2572617d786150ef /src/lib/crypto/crc32 | |
parent | a6eae6d985a95bd46e0ae18727258e1c1b2d555c (diff) | |
download | krb5-a6193eaae4caab349681cf43405cf9fc323efabc.tar.gz krb5-a6193eaae4caab349681cf43405cf9fc323efabc.tar.xz krb5-a6193eaae4caab349681cf43405cf9fc323efabc.zip |
Made the shared library makefile changes not apply to the PC
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5938 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/crc32')
-rw-r--r-- | src/lib/crypto/crc32/Makefile.in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/lib/crypto/crc32/Makefile.in b/src/lib/crypto/crc32/Makefile.in index 84e9052179..615ed586c3 100644 --- a/src/lib/crypto/crc32/Makefile.in +++ b/src/lib/crypto/crc32/Makefile.in @@ -12,7 +12,11 @@ OBJS= crc.$(OBJEXT) SRCS= $(srcdir)/crc.c $(srcdir)/crctest.c -all:: shared $(OBJS) +all:: all-$(WHAT) $(OBJS) + +all-unix:: shared +all-mac:: shared +all-windows:: shared: mkdir shared @@ -27,6 +31,11 @@ crctest.exe: check:: crctest$(EXEEXT) $(C)crctest$(EXEEXT) < $(srcdir)$(S)crc-test -clean:: +clean:: clean-$(WHAT) $(RM) crctest$(EXEEXT) crctest.$(OBJEXT) + +clean-unix:: + $(RM) shared/* +clean-mac:: $(RM) shared/* +clean-windows:: |