manual testing
Some checks failed
Test and Deploy / test (push) Failing after 10s
Test and Deploy / docs (push) Has been skipped

This commit is contained in:
2024-07-07 20:05:32 -07:00
parent 1424925cbf
commit c52712471f
5 changed files with 43 additions and 14 deletions

View File

@ -1,4 +1,4 @@
.PHONY : clean tests all
.PHONY : clean tests all manual
CFLAGS = -std=c99 -Iinclude -pedantic
WARNINGS= -Wall -Wextra
@ -30,6 +30,7 @@ clean:
rm -f $(TARGET)
rm -f testrunner
rm -f tcptest
rm -f netmanual
rm -f compile_commands.json
tests:
@ -37,3 +38,5 @@ tests:
cc $(CFLAGS) -o tcptest tests/tcptest.c src/*.c
./run_tests.sh
manual:
cc $(CFLAGS) -o netmanual tests/netmanual.c src/*.c