From: Mark Wooding Date: Wed, 25 May 2016 15:26:49 +0000 (+0100) Subject: src/Makefile.am: Append `$(EXEEXT)' to placate newer Automake. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/9bd7c3e92e3db5eeac695c52d8917677439b7b79?ds=inline;hp=--cc src/Makefile.am: Append `$(EXEEXT)' to placate newer Automake. I don't think it will help much because I don't expect that `cl-launch' works on Windows. --- 9bd7c3e92e3db5eeac695c52d8917677439b7b79 diff --git a/src/Makefile.am b/src/Makefile.am index 2871ae9..053ca1c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -122,8 +122,8 @@ sod-frontend.asd: sod-frontend.asd.in Makefile ## Building the executable image. bin_PROGRAMS += sod sod_SOURCES = -sod: $(LISP_SOURCES) sod.asd sod-frontend.asd auto.lisp - $(V_DUMP)$(ASDF_ENV) $(CL_LAUNCH) -o sod -d ! -l $(LISPSYS) +I \ +sod$(EXEEXT): $(LISP_SOURCES) sod.asd sod-frontend.asd auto.lisp + $(V_DUMP)$(ASDF_ENV) $(CL_LAUNCH) -o $@ -d ! -l $(LISPSYS) +I \ -s sod-frontend -r sod-frontend:main ###--------------------------------------------------------------------------