Initial commit

This commit is contained in:
2024-01-27 21:06:02 +01:00
commit ac937cc86a
8 changed files with 234 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
CC = gcc
CFLAGS = -ggdb -O0 -Wall -Wextra -Wno-unused-value
all : client server
client : client.c
server : server.c | payload_blob.h
%_blob.h : %.S | compile-blob.sh
./compile-blob.sh $< > $@
.PHONY = clean
clean :
rm client server *_blob.h 2>/dev/null || true