Files
sowm/Makefile
Dylan Araps 2c3c353d74 docs: update
2020-01-23 17:03:56 +02:00

20 lines
365 B
Makefile

CFLAGS += -std=c99 -Wall -Wextra -pedantic -Wold-style-declaration
CFLAGS += -Wmissing-prototypes -Wno-unused-parameter
PREFIX ?= /usr
BINDIR ?= $(PREFIX)/bin
CC ?= gcc
all: config.h sowm
config.h:
cp config.def.h config.h
sowm: sowm.o
$(CC) $(LDFLAGS) -O3 -o $@ $+ -lX11
install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm
clean:
rm -f sowm *.o