bspwm/tests/Makefile
2015-12-22 19:25:45 +01:00

13 lines
199 B
Makefile

OUT = test_window
CFLAGS += -std=c99 -pedantic -Wall -Wextra
LDLIBS = -lxcb -lxcb-icccm
SRC = $(wildcard *.c)
OBJ = $(SRC:.c=.o)
all: $(OUT)
clean:
$(RM) $(OUT) $(OBJ)
.PHONY: all clean