From 2c3c353d7470706cb3c0b8c5d46f0857a00d997a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 23 Jan 2020 17:03:56 +0200 Subject: [PATCH] docs: update --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0fb1823..6a840ae 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ -CFLAGS += -std=c99 -Wall -Wextra -pedantic +CFLAGS += -std=c99 -Wall -Wextra -pedantic -Wold-style-declaration CFLAGS += -Wmissing-prototypes -Wno-unused-parameter PREFIX ?= /usr BINDIR ?= $(PREFIX)/bin - -CC ?= gcc +CC ?= gcc all: config.h sowm @@ -14,7 +13,7 @@ sowm: sowm.o $(CC) $(LDFLAGS) -O3 -o $@ $+ -lX11 install: all - install -Dm 755 sowm $(DESTDIR)$(BINDIR)/sowm + install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm clean: rm -f sowm *.o