From: Emil Date: Wed, 27 Sep 2023 05:50:44 +0000 (+0000) Subject: I forgot that the Makefile existed X-Git-Tag: v20240302~71 X-Git-Url: https://git.xolatile.top/?a=commitdiff_plain;h=6605459fb99076121727eb82ff7f99dad67faff8;p=emil-bake.git I forgot that the Makefile existed --- diff --git a/Makefile b/Makefile deleted file mode 100644 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