-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (22 loc) · 678 Bytes
/
Makefile
File metadata and controls
27 lines (22 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.PHONY: test test-js test-lua test-all clean help
help:
@echo "ConsoleLog Test Suite"
@echo "===================="
@echo "Available targets:"
@echo " make test-js - Run JavaScript tests"
@echo " make test-lua - Run Lua tests"
@echo " make test-all - Run all tests"
@echo " make test - Alias for test-all"
@echo " make clean - Clean test artifacts"
@echo " make help - Show this help"
test: test-all
test-all: test-lua
@echo "All tests completed!"
test-lua:
@echo "Running Lua tests..."
@./tests/run_lua_tests.sh
clean:
@echo "Cleaning test artifacts..."
@rm -f /tmp/test_*.js
@rm -f /tmp/test_output.txt
@echo "Clean complete!"