mirror of
https://github.com/labwc/labwc.git
synced 2025-10-31 22:25:34 -04:00
15 lines
381 B
Makefile
15 lines
381 B
Makefile
CFLAGS += -g -Wall -O0 -std=c11
|
|
CFLAGS += -I../../include
|
|
LDFLAGS += `pkg-config --cflags --libs cairo`
|
|
ASAN += -fsanitize=address
|
|
|
|
PROGS = xbm-tokenize
|
|
DEP_TOKENIZE = ../../src/common/buf.c ../../src/theme/xbm/tokenize.c
|
|
|
|
all: $(PROGS)
|
|
|
|
xbm-tokenize: xbm-tokenize.c $(DEP_TOKENIZE)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(ASAN)
|
|
|
|
clean :
|
|
$(RM) $(PROGS)
|