aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/crc32/Makefile.in
diff options
context:
space:
mode:
authorKeith Vetter <keithv@fusion.com>1995-06-03 02:46:46 +0000
committerKeith Vetter <keithv@fusion.com>1995-06-03 02:46:46 +0000
commita6193eaae4caab349681cf43405cf9fc323efabc (patch)
tree4e49c0c0ec9e03ebb429f23f2572617d786150ef /src/lib/crypto/crc32/Makefile.in
parenta6eae6d985a95bd46e0ae18727258e1c1b2d555c (diff)
downloadkrb5-a6193eaae4caab349681cf43405cf9fc323efabc.zip
krb5-a6193eaae4caab349681cf43405cf9fc323efabc.tar.gz
krb5-a6193eaae4caab349681cf43405cf9fc323efabc.tar.bz2
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/Makefile.in')
-rw-r--r--src/lib/crypto/crc32/Makefile.in13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/lib/crypto/crc32/Makefile.in b/src/lib/crypto/crc32/Makefile.in
index 84e9052..615ed58 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::