strawpunks

This commit is contained in:
Radhitya 2025-01-15 10:22:50 +07:00
parent f83ed1578c
commit f0598ebce4

View File

@ -1,9 +1,10 @@
cc= cc
cflags = -Wall -Wextra -std=c99 -pedantic
src= main.c
out= daisy
install:
$(cc) $(src) -o $(out)
$(cc) $(cflags) $(src) -o $(out)
clean:
rm -rf source