feat: add handy makefile

This commit is contained in:
DarkCat09 2024-10-14 16:43:50 +04:00
parent b784df08ac
commit d35b3206dc
Signed by: DarkCat09
GPG key ID: BD3CE9B65916CD82

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
CC ?= /usr/bin/gcc
sleepsh:
$(CC) -o sleepsh -O3 main.c
main.c: sleepsh
.PHONY: all build clean
all: sleepsh
build: sleepsh
clean:
rm -f sleepsh