blob: c74426af80b459ba342211c62ed15a13845e5f53 (
plain) (
blame)
1
2
3
4
5
|
CFLAGS = -std=c99 -Os -Wall -Wextra $(shell pkg-config --cflags xft x11)
LDLIBS = $(shell pkg-config --libs xft x11)
colitur-x: colitur-x.c config.h
$(CC) $(CFLAGS) -o $@ colitur-x.c $(LDLIBS)
clean:; rm -f colitur-x
|