From 0ce56aff2e6b8eb557a16f37fd2e1f50e1e46045 Mon Sep 17 00:00:00 2001 From: night0721 Date: Tue, 12 Nov 2024 11:48:32 +0000 Subject: [PATCH] Update Makefile --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 86e98c5..b7d9f80 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,6 @@ VERSION = 1.0 TARGET = ccc MANPAGE = $(TARGET).1 -CONF = config.h PREFIX ?= /usr/local BINDIR = $(PREFIX)/bin MANDIR = $(PREFIX)/share/man/man1 @@ -15,7 +14,7 @@ CFLAGS = -Os -march=native -mtune=native -pipe -s -flto -std=c99 -pedantic -Wall SRC = ccc.c util.c file.c icons.c -$(TARGET): $(SRC) $(CONF) +$(TARGET): $(SRC) config.h $(CC) $(SRC) -o $@ $(CFLAGS) $(LDFLAGS) dist: