* Makefile.in (LDFLAGS): Eliminate, duplicate.
authorJohn Gilmore <gnu@toad.com>
Sat, 18 Mar 1995 03:44:45 +0000 (03:44 +0000)
committerJohn Gilmore <gnu@toad.com>
Sat, 18 Mar 1995 03:44:45 +0000 (03:44 +0000)
(SRCS):  Eliminate $(srcdir) which causes mac problems.
(all-unix):  Eliminate obsolete "includes".
(all-mac):  Add.
(unixmac):  Add $(SRCS) so that the .c source files will be created
here in the original "configure tree on Unix" stage of the build.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5161 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/error_tables/ChangeLog
src/lib/krb5/error_tables/Makefile.in

index 0dfc4a79f9cf680f64948d4df285ea3e5bbf959e..42ad71779f57925225244edcb5f22004c07ea912 100644 (file)
@@ -1,3 +1,12 @@
+Fri Mar 17 19:42:45 1995  John Gilmore  (gnu at toad.com)
+
+       * Makefile.in (LDFLAGS):  Eliminate, duplicate.
+       (SRCS):  Eliminate $(srcdir) which causes mac problems.
+       (all-unix):  Eliminate obsolete "includes".
+       (all-mac):  Add.
+       (unixmac):  Add $(SRCS) so that the .c source files will be created
+       here in the original "configure tree on Unix" stage of the build.
+
 Wed Mar 15 12:24:25 1995 Keith Vetter (keithv@fusion.com)
 
        * Makefile.in: disabled the awk part of the makefile.
index 9a0d4a9698ffc3754d9be3b1031771fdc511f045..9654b894c36a526e5a2817e27b2cb2289090dd8c 100644 (file)
@@ -1,5 +1,4 @@
 CFLAGS = $(CCOPTS) $(DEFS)
-LDFLAGS = -g
 
 ##DOSBUILDTOP = ..\..\..
 ##DOSLIBNAME=..\krb5.lib
@@ -11,15 +10,16 @@ HDRS= asn1_err.h kdb5_err.h krb5_err.h kv5m_err.h adm_err.h
 OBJS= asn1_err.$(OBJEXT) kdb5_err.$(OBJEXT) krb5_err.$(OBJEXT) \
       kv5m_err.$(OBJEXT) adm_err.$(OBJEXT) init_ets.$(OBJEXT)
 ETSRCS= asn1_err.c kdb5_err.c krb5_err.c kv5m_err.c adm_err.c
-SRCS=$(ETSRCS) $(srcdir)/init_ets.c
+SRCS=$(ETSRCS) init_ets.c
 
 all:: all-$(WHAT)
 
-all-unix:: $(HDRS) includes $(OBJS)
+all-unix:: $(HDRS) $(OBJS)
+all-mac:: $(HDRS) $(OBJS)
 
 all-windows:: $(OBJS)
 
-unixmac: $(HDRS)
+unixmac: $(HDRS) $(SRCS)
 
 awk-windows:
        $(AWK) -f $(SRCTOP)/util/et/et_h.awk outfile=asn1_err.h asn1_err.et