changeset 1886:ee0959363838

[xemacs-hg @ 2004-01-27 17:49:44 by james] Pass $(ldflags) to mmencode and make-path builds.
author james
date Tue, 27 Jan 2004 17:49:44 +0000
parents 51ce4f55d8c3
children 1e5b7843dfa0
files lib-src/ChangeLog lib-src/Makefile.in.in
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/ChangeLog	Tue Jan 27 13:33:21 2004 +0000
+++ b/lib-src/ChangeLog	Tue Jan 27 17:49:44 2004 +0000
@@ -1,3 +1,8 @@
+2004-01-21  Jerry James  <james@xemacs.org>
+
+	* Makefile.in.in (mmencode): Pass $(ldflags) to the compiler.
+	* Makefile.in.in (make-path): Ditto.
+
 2003-10-13  Jerry James  <james@xemacs.org>
 
 	* ellcc.c: Remove attribute definitions, include new compiler.h
--- a/lib-src/Makefile.in.in	Tue Jan 27 13:33:21 2004 +0000
+++ b/lib-src/Makefile.in.in	Tue Jan 27 17:49:44 2004 +0000
@@ -387,11 +387,11 @@
 ## mmencode binary is used by tm - but is really part of the metamail package
 ## mmencode.c was merged copy of mmencode.c and codes.c of metamail
 mmencode : ${srcdir}/mmencode.c
-	$(CC) $(cflags) ${srcdir}/mmencode.c -o $@
+	$(CC) $(cflags) ${srcdir}/mmencode.c $(ldflags) -o $@
 
 
 ## The timer utility (timer.c, getdate.y) is not used in XEmacs
 ## because XEmacs provides built-in timer facilities.
 
 make-path: ${srcdir}/make-path.c ../src/config.h
-	$(CC) -Demacs $(cflags) ${srcdir}/make-path.c -o $@
+	$(CC) -Demacs $(cflags) ${srcdir}/make-path.c $(ldflags) -o $@