ccalathea/Makefile

10 lines
191 B
Makefile
Raw Normal View History

2023-01-17 01:13:12 +00:00
BUILD_DIR=./build
calathea: calathea.c
if [ ! -d "$(BUILD_DIR)" ]; then\
mkdir $(BUILD_DIR);\
fi
gcc -Wall -Wextra -pedantic -lm -lcmark calathea.c -o build/calathea
clean:
rm build/*