I forgot that the Makefile existed

This commit is contained in:
Emil 2023-09-27 05:50:44 +00:00
parent 0db0db4f6b
commit 6605459fb9
No known key found for this signature in database
GPG Key ID: 5432DB986FDBCF8A

View File

@ -1,17 +0,0 @@
#!/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