manual testing
This commit is contained in:
5
Makefile
5
Makefile
@ -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
|
||||
|
Reference in New Issue
Block a user