]> git.lizzy.rs Git - bspwm.git/blob - tests/Makefile
bspwm: port rounded corners patch to latest version
[bspwm.git] / tests / Makefile
1 OUT      = test_window
2 CFLAGS  += -std=c99 -pedantic -Wall -Wextra
3 LDLIBS   = -lxcb -lxcb-icccm
4
5 SRC = $(wildcard *.c)
6 OBJ = $(SRC:.c=.o)
7
8 all: $(OUT)
9
10 clean:
11         $(RM) $(OUT) $(OBJ)
12
13 .PHONY: all clean