Commit cd4d9d03cab19d238a1413879141470faee34ef1
Explicitly pass TESTS_* to Makefile.win from tests
These were introduced for AppVeyor CI and apparently it used to define
`$CFLAGS` and `$LDFLAGS` which caused tests' `Makefile` to export them
to `Makefile.win`. Set those variables explicitly and don't pass
tests-specific values in them.
Author: xaizek
Author date (UTC): 2026-01-13 14:16
Committer name: xaizek
Committer date (UTC): 2026-01-13 15:29
Parent(s): d5e3ede16f47c77357df66a7e28fde151b075bc8
Signing key: 99DC5E4DB05F6BE2
Tree: bef517f626deeebb1cb4089b6410f2e84b20ceba
| File tests/Makefile changed (mode: 100644) (index 091f726cb..6fbdb06ec) |
| ... |
... |
vifm_obj += $(B)../src/compile_info.o |
| 128 |
128 |
|
|
| 129 |
129 |
make_args := -C $(B)../src/ |
make_args := -C $(B)../src/ |
| 130 |
130 |
ifdef win_env |
ifdef win_env |
|
131 |
|
make_args += -f $(abspath ../src/Makefile.win) |
|
132 |
|
make_args += "CFLAGS=$(TESTS_CFLAGS)" "LDFLAGS=$(TESTS_LDFLAGS)" |
| 131 |
133 |
exe_suffix := .exe |
exe_suffix := .exe |
| 132 |
134 |
endif |
endif |
| 133 |
135 |
|
|