summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@toad.com>1995-03-29 02:56:31 +0000
committerJohn Gilmore <gnu@toad.com>1995-03-29 02:56:31 +0000
commit687b6c30f9d9e84f76082c62e9798b92839a6c82 (patch)
tree55478f441adbfffd99b08db7f23211749fd0b362
parentc117f7dcc5271bf9b76b0e6374f77a97026be14f (diff)
downloadkrb5-687b6c30f9d9e84f76082c62e9798b92839a6c82.tar.gz
krb5-687b6c30f9d9e84f76082c62e9798b92839a6c82.tar.xz
krb5-687b6c30f9d9e84f76082c62e9798b92839a6c82.zip
* Makefile.in: Fix up Mac build process somewhat. Not complete
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5303 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/ChangeLog4
-rw-r--r--src/Makefile.in25
2 files changed, 20 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1d93b0776..68ddc6c03 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -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.
diff --git a/src/Makefile.in b/src/Makefile.in
index 17ddbba05..af7bec4f2 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -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
#