From 9d9f6661bd4e92b18e3a1150207c7cd8022d6977 Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Sat, 24 Oct 2020 20:25:10 +0200 Subject: Simplify build toolchain --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 02cac6f..dd9c016 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -CC = clang CFLAGS = -Wall -Wextra -std=c99 -pedantic -O3 LDFLAGS = -lm OBJECTS = mjolnir.o @@ -12,8 +11,7 @@ install: release cp $(TARGET) $(PREFIX)/$(TARGET) chmod 755 $(PREFIX)/$(TARGET) +uninstall: + rm $(PREFIX)/$(TARGET) clean: - rm -f *.o *~ core tags $(TARGET) - -tags: - ctags * + rm -f *.o $(TARGET) -- cgit v1.2.3