From fa2472c17246206ce6947475782de17245eceeea Mon Sep 17 00:00:00 2001 From: Vlad Vissoultchev Date: Mon, 14 Mar 2016 18:11:49 +0200 Subject: Fix tests Makefiles on Windows Compiled tcc.exe location is under $(top_srcdir)/win32 --- tests/pp/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tests/pp/Makefile') diff --git a/tests/pp/Makefile b/tests/pp/Makefile index c656f9a..cb8bfea 100644 --- a/tests/pp/Makefile +++ b/tests/pp/Makefile @@ -2,9 +2,16 @@ # credits: 01..13.c from the pcc cpp-tests suite # -TCC = ../../tcc +TOP = ../.. +include $(TOP)/Makefile + +TCC = $(TOP)/tcc TESTS = $(patsubst %.c,%.test,$(wildcard *.c)) +ifdef CONFIG_WIN32 + TCC = $(top_srcdir)/win32/tcc +endif + all test : $(TESTS) %.test: %.c %.expect -- cgit v1.3.1