docs: update

This commit is contained in:
Dylan Araps 2020-01-23 17:03:56 +02:00
parent 69f2c71fb7
commit 2c3c353d74
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 3 additions and 4 deletions

View File

@ -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