chore: remove obsolete host test scripts

This commit is contained in:
2026-08-16 18:54:23 +09:00
parent 83ce26c209
commit d915a7e63c
3 changed files with 1 additions and 138 deletions
+1 -8
View File
@@ -4,7 +4,7 @@ CPPFLAGS ?= -Isrc
SRC = src/arena.c src/diag.c src/lexer.c src/ast.c src/parser.c src/types.c src/check.c src/emit_c.c src/driver.c
OBJ = $(SRC:.c=.o)
.PHONY: all clean test test-cli dos-build
.PHONY: all clean dos-build
all: fec
fec: $(OBJ)
@@ -13,13 +13,6 @@ fec: $(OBJ)
src/%.o: src/%.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
test: fec
@./tests/run-tests.sh
@sh ./tests/run-cli-tests.sh
test-cli: fec
@sh ./tests/run-cli-tests.sh
dos-build:
@echo "Run build-dos.bat inside FreeDOS/Open Watcom."