From f61838edc4659c303783b32bb13ba8ad0790d10a Mon Sep 17 00:00:00 2001 From: night0721 Date: Tue, 22 Oct 2024 01:07:40 +0100 Subject: [PATCH] Update Makefile --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c278ba3..8e9c656 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,13 @@ .POSIX: .SUFFIXES: -CC = cc VERSION = 1.0 TARGET = ace MANPAGE = $(TARGET).1 PREFIX ?= /usr/local BINDIR = $(PREFIX)/bin -# Flags -CFLAGS = -O3 -march=native -mtune=native -pipe -s -std=c99 -flto -pedantic -Wall -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 +CFLAGS = -O3 -march=native -mtune=native -pipe -s -std=c99 -flto -pedantic -Wall SRC = ace.c @@ -29,10 +27,10 @@ install: $(TARGET) chmod 755 $(DESTDIR)$(BINDIR)/$(TARGET) uninstall: - $(RM) $(DESTDIR)$(BINDIR)/$(TARGET) + rm $(DESTDIR)$(BINDIR)/$(TARGET) clean: - $(RM) $(TARGET) + rm $(TARGET) all: $(TARGET)