This commit is contained in:
2023-12-22 22:53:54 -05:00
commit 2821b7e9a1
45 changed files with 8425 additions and 0 deletions

13
logsrv/Makefile Executable file
View File

@@ -0,0 +1,13 @@
LIBS = -ltermcap
CC = cc
CFLAGS = -g
OBJECTS = client.o socket.o
SOURCES = client.c socket.c
.c.o:
${CC} ${CFLAGS} -c $<
client: ${OBJECTS}
${CC} ${CFLAGS} -o dataservd ${OBJECTS} ${LIBS}