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/*