From fa16ecb3cd2bebd2f2a0d381a1bd651dcd38318b Mon Sep 17 00:00:00 2001 From: Humm Date: Fri, 18 Sep 2020 16:30:40 +0200 Subject: remove `-o` from CC command line With `-o` /and/ `-c`, the result is unspecified. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ae0a184..3b0fb68 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ kirc: kirc.o Makefile $(CC) -o kirc kirc.o $(LDFLAGS) .c.o: - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< + $(CC) $(CPPFLAGS) $(CFLAGS) -c $< install: all mkdir -p $(DESTDIR)$(BINDIR) -- cgit v1.2.3