Add XKB for getting correct state, add colspan test code

This commit is contained in:
Michael Stapelberg
2009-02-10 05:50:35 +01:00
parent 91022f069e
commit df9fa0dd8f
6 changed files with 94 additions and 24 deletions

View File

@ -7,16 +7,19 @@ CFLAGS += -g3
CFLAGS += -I/usr/include/xcb
CFLAGS += -I/usr/local/include/
CFLAGS += -I/usr/local/include/xcb
CFLAGS += -I/usr/pkg/include
LDFLAGS += -lxcb-wm
LDFLAGS += -L/usr/local/lib
LDFLAGS += -lxcb-keysyms
LDFLAGS += -lX11
LDFLAGS += -L/usr/local/lib -L/usr/pkg/lib
ifeq ($(UNAME),NetBSD)
LDFLAGS += -Wl,-rpath,/usr/local/lib
LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
endif
FILES=$(patsubst %.c,%.o,$(wildcard *.c))
%.o: %.c %.h
%.o: %.c %.h data.h
$(CC) $(CFLAGS) -c -o $@ $<
all: ${FILES}