From f8a2d63bc50ab31aa89420508dad3976da9ee9a2 Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Sat, 14 Nov 2020 23:33:04 +0100 Subject: [PATCH] automake: added EXEEXT for windows support The make process fails when the excutable is called pspp on windows. I added the EXEEXT such that pspp.exe is the target on Windows. --- doc/automake.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/automake.mk b/doc/automake.mk index 6b8c37331a..a44f19f15a 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -165,7 +165,7 @@ CLEANFILES += $(EXAMPLE_TXTS) $(EXAMPLE_SPVS) $(EXAMPLE_TEXIS) $(EXAMPLE_HTML) SUFFIXES += .sps .spv .txt .html .texi # Use pspp to process a syntax file into an output file. -pspp = src/ui/terminal/pspp +pspp = src/ui/terminal/pspp$(EXEEXT) $(EXAMPLE_SPVS): $(pspp) .sps.spv: $(AM_V_GEN)(cd $(top_srcdir)/examples \ -- 2.30.2