Загрузить файлы в «/»

This commit is contained in:
8nlight 2023-09-15 00:36:33 +03:00
parent 9a7e416ae1
commit 3736860917
3 changed files with 115 additions and 1 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
CC?=cc
CFLAGS?=-s -Wall -Wextra -pedantic -O0
LDFLAGS?=-lncurses
all:
$(CC) main.c -osm $(CFLAGS) $(LDFLAGS)
clean:
rm sm