initial commit

This commit is contained in:
hollorol
2024-07-31 23:12:49 +02:00
commit f56ffe480d
17 changed files with 279 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
DEST=$(HOME)/.local/bin
SRC=space-to-snake.c
OUT=space_to_snake
../$(OUT): $(SRC)
gcc -pedantic -Wall -Wextra $(SRC) -o ../$(OUT)
install:
cp ../$(OUT) $(DEST)