commit 21983141f1c8a2d43135c8e315a7feb20414065a
parent b5bf2018504d5c392ad1f61aa17e218681f1754b
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date: Sat, 22 Jun 2024 04:50:40 -0500
Change name to ttcli and ttsrv
tt -> ttcli
ttserver -> ttsrv
Diffstat:
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,5 +1,5 @@
-/tt.o
-/tt
-/ttserver.o
-/ttserver
+/ttcli.o
+/ttcli
+/ttsrv.o
+/ttsrv
/data/
diff --git a/Makefile b/Makefile
@@ -1,13 +1,13 @@
CFLAGS = -g
LDFLAGS = `pkg-config --libs ncurses` `pkg-config --libs json-c`
-all: tt ttserver
+all: ttcli ttsrv
ttcli.o: tt.h
ttsrv.o: tt.h
clean:
- rm -f tt.o tt ttserver.o ttserver
+ rm -f ttcli.o ttcli ttsrv.o ttsrv
.PHONY: all clean
diff --git a/tt.c b/ttcli.c
diff --git a/ttserver.c b/ttsrv.c