1
0
mirror of https://git.lain.church/bake/bake.git synced 2025-05-18 01:26:43 +00:00
bake/Makefile
2023-09-27 05:28:54 +00:00

18 lines
216 B
Makefile

#!/bin/make -f
CFLAGS := -std=gnu99 -O2 -Wall -Wextra -Wpedantic -pipe
baked:
${LINK.c} baked.c -o baked
bake:
./baked ./baked.c
install: baked
./baked ./install
clean:
-rm baked
.PHONY: bake install clean