]> git.xolatile.top Git - emil-bake.git/commitdiff
I forgot that the Makefile existed
authorEmil <emilwilliams@tuta.io>
Wed, 27 Sep 2023 05:50:44 +0000 (05:50 +0000)
committerEmil <emilwilliams@tuta.io>
Wed, 27 Sep 2023 05:50:44 +0000 (05:50 +0000)
Makefile [deleted file]

diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index 39b30aa..0000000
--- a/Makefile
+++ /dev/null
@@ -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