Initial commit

This commit is contained in:
r4
2021-06-24 00:59:14 +02:00
parent 7398caab3b
commit 56ab2ab7c6
3 changed files with 279 additions and 1 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC=cc
SRC=main.c
EXE=main
all: $(EXE)
$(EXE): $(SRC)
$(CC) $(SRC) -o $(EXE)
.PHONY: clean
clean:
rm -f $(EXE)