From e0126a5df719ea3c490df322a92a62e379a0dee9 Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Sun, 21 Sep 2025 00:50:03 +0300 Subject: meow --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e252f55 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +CC=cc +CFLAGS=-Wall -Wextra -Werror -O2 -s +TARGET=fjorker + +all: $(TARGET) + +$(TARGET): main.c + $(CC) $(CFLAGS) -o $(TARGET) main.c + +install: $(TARGET) + install -m 755 $(TARGET) /usr/local/bin/ + +clean: + rm -f $(TARGET) + +.PHONY: all clean install -- cgit 1.4.1-2-gfad0