daisy/makefile
2025-01-15 10:22:50 +07:00

13 lines
165 B
Makefile

cc= cc
cflags = -Wall -Wextra -std=c99 -pedantic
src= main.c
out= daisy
install:
$(cc) $(cflags) $(src) -o $(out)
clean:
rm -rf source
rm -rf target
rm $(out)