mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
Add src/theme/xbm/tokenize.c
This commit is contained in:
parent
16e879cb16
commit
d80a7b518f
8 changed files with 208 additions and 0 deletions
15
tools/xbm/Makefile
Normal file
15
tools/xbm/Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue