diff test/resolve_self/Makefile.generic @ 665:ef356272a1c7 default tip

- introduced Makefile var APP_SUFFIX to handle cases where compilers implicitly add an extension to executables (e.g. llvm/mingw64 adds .exe even of not specified via -o)
author Tassilo Philipp
date Thu, 20 Jun 2024 17:10:12 +0200
parents 2536413edfd8
children
line wrap: on
line diff
--- a/test/resolve_self/Makefile.generic	Thu May 23 16:05:45 2024 +0200
+++ b/test/resolve_self/Makefile.generic	Thu Jun 20 17:10:12 2024 +0200
@@ -1,4 +1,4 @@
-APP       = resolve_self
+APP       = resolve_self${APP_SUFFIX}
 OBJS      = main.o
 SRCTOP    = ${VPATH}/../..
 BLDTOP    = ../..