diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-12 20:49:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-12 20:49:41 +0300 |
commit | d95b87d85753b4e067dd952c332b1a1a14d98cfb (patch) | |
tree | 5ac1cb490588260f5d2b7f625cb114b8505f7d78 | |
parent | d1c4ec6d173fbe7348b7a40dda9937bad8f8fc6e (diff) | |
download | egawk-d95b87d85753b4e067dd952c332b1a1a14d98cfb.tar.gz egawk-d95b87d85753b4e067dd952c332b1a1a14d98cfb.tar.bz2 egawk-d95b87d85753b4e067dd952c332b1a1a14d98cfb.zip |
Fix efence target, whitepsace in ChangeLog.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 9 insertions, 4 deletions
@@ -1,7 +1,12 @@ +2015-04-12 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (efence): Make this link again. + Thanks to Michal Jaegermann for pointing out the problem. + 2015-04-08 John E. Malmberg <wb8tyw@qsl.net> - * custom.h: VMS shares some code paths with ZOS_USS in - building gawkfts extension. + * custom.h: VMS shares some code paths with ZOS_USS in + building gawkfts extension. 2015-04-08 Arnold D. Robbins <arnold@skeeve.com> diff --git a/Makefile.am b/Makefile.am index a1883780..2d8357d5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -203,7 +203,7 @@ command.c: command.y # This is for my development & testing. efence: gawk - $(CC) $(LDFLAGS) -o gawk $$(ls *.o | grep -v '_p.o$$') $(LIBS) -lefence + $(CC) $(LDFLAGS) -o gawk $$(ls *.o | grep -v '_p.o$$') $(LDADD) $(LIBS) -lefence diffout valgrind-scan: @cd test && $(MAKE) $(AM_MAKEFLAGS) $@ diff --git a/Makefile.in b/Makefile.in index e93a6e60..79a5a2a4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1221,7 +1221,7 @@ command.c: command.y # This is for my development & testing. efence: gawk - $(CC) $(LDFLAGS) -o gawk $$(ls *.o | grep -v '_p.o$$') $(LIBS) -lefence + $(CC) $(LDFLAGS) -o gawk $$(ls *.o | grep -v '_p.o$$') $(LDADD) $(LIBS) -lefence diffout valgrind-scan: @cd test && $(MAKE) $(AM_MAKEFLAGS) $@ |