requesting and receiving rref

but currently the value is buggy
This commit is contained in:
2024-01-21 19:01:21 +01:00
parent 56bb116ab9
commit 6c04cdf97f
4 changed files with 64 additions and 20 deletions

View File

@ -1,10 +1,13 @@
BIN=bin
all: dirs command
all: dirs command readref
command: command.c
command:
gcc -o ${BIN}/command network.c command.c
readref:
gcc -o ${BIN}/readref network.c readref.c
.PHONY: clean dirs
clean:
rm -rf ${BIN}