* Makefile.in: Fix up Mac build process somewhat. Not complete
authorJohn Gilmore <gnu@toad.com>
Wed, 29 Mar 1995 02:56:31 +0000 (02:56 +0000)
committerJohn Gilmore <gnu@toad.com>
Wed, 29 Mar 1995 02:56:31 +0000 (02:56 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5303 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/Makefile.in

index 1d93b07767b8367358a0c640a2c667800c516fe4..68ddc6c03315253fe50268e8111cfa097ba1633c 100644 (file)
@@ -1,3 +1,7 @@
+Tue Mar 28 18:55:12 1995  John Gilmore  (gnu at toad.com)
+
+       * Makefile.in:  Fix up Mac build process somewhat.  Not complete.
+
 Mon Mar 27 20:02:01 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: added making and zipping in windows/wintel.
index 17ddbba05dba2551cae8010fa28d7bc47f511417..af7bec4f28b3e7f2f28760b0325bdbf629d9b652 100644 (file)
@@ -1,5 +1,4 @@
 CFLAGS = $(CCOPTS) $(DEFS)
-LDFLAGS = -g
 
 ##DOSBUILDTOP = .
 ##DOS!include $(BUILDTOP)\config\windows.in
@@ -14,9 +13,8 @@ libdir = $(exec_prefix)/lib
 mandir = $(prefix)/man/man1
 manext = 1
 
-SHELL = /bin/sh
-
 SRCS =  
+HDRS = 
 
 DISTFILES = $(SRCS) $(HDRS) COPYING COPYING.LIB ChangeLog Makefile.in
 
@@ -83,13 +81,10 @@ TAGS: $(SRCS)
 
 clean:: clean-$(WHAT)
 
-clean-:: clean-windows
-
+clean-:: clean-unix
+clean-mac:: clean-unix
 clean-unix::
-       rm -f  *.o core
-
-clean-mac::
-       rm -f *.o core
+       $(RM) *.o core
 
 mostlyclean: clean
 
@@ -110,6 +105,18 @@ dist: $(DISTFILES)
        done
        tar chzf `cat .fname`.tar.gz `cat .fname`
        rm -rf `cat .fname` .fname
+
+# Macintosh build process...
+
+# Build all things for the Mac build, which need to be built on 
+# Unix first.
+unixmac:
+       (cd lib/krb5/error_tables; make -f Makefile.in unixmac)
+       (cd lib/gssapi/generic; make -f Makefile.in unixmac)
+
+
+# Microsoft Windows build process...
+
 #
 # Windows configuration
 #