feat: initial commit

This commit is contained in:
2023-10-22 12:59:33 +02:00
commit 2a6f5383a3
8 changed files with 299 additions and 0 deletions

21
src/client/Makefile Normal file
View File

@@ -0,0 +1,21 @@
SRC = main.c \
memory.c
OBJ = $(SRC:.c=.o)
NAME = Revird
CFLAGS = -Wall -Wextra -Wpedantic
all: $(NAME)
$(NAME): $(OBJ)
gcc $(SRC) $(CFLAGS) -o $(NAME)
mv $(NAME) ../../.
clean:
rm -f $(OBJ)
fclean: clean
rm -f $(NAME)
re: fclean all
.PHONY : all $(NAME) clean fclean re