chiark / gitweb /
src/Makefile.am: Append `$(EXEEXT)' to placate newer Automake.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 25 May 2016 15:26:49 +0000 (16:26 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 25 May 2016 15:26:49 +0000 (16:26 +0100)
I don't think it will help much because I don't expect that `cl-launch'
works on Windows.

src/Makefile.am

index 2871ae9ad5a1afa0c7f0ca6246add7f30398fe57..053ca1cf4a3cd1a4f7e13ce851f83f7beacf8ac8 100644 (file)
@@ -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
 
 ###--------------------------------------------------------------------------