Revert "Fix tests Makefiles on Windows"

This reverts commit fa2472c172.
This commit is contained in:
Vlad Vissoultchev
2016-04-17 16:20:46 +03:00
parent f021a7cd94
commit acc8f602e5
3 changed files with 2 additions and 14 deletions

View File

@ -2,17 +2,10 @@
# credits: 01..13.c from the pcc cpp-tests suite
#
TOP = ../..
include $(TOP)/Makefile
TCC = $(TOP)/tcc
TCC = ../../tcc
TESTS = $(patsubst %.c,%.test,$(wildcard *.c))
TESTS += $(patsubst %.S,%.test,$(wildcard *.S))
ifdef CONFIG_WIN32
TCC = $(top_srcdir)/win32/tcc
endif
all test : $(TESTS)
%.test: %.c %.expect