mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
12 lines
171 B
Makefile
12 lines
171 B
Makefile
CFLAGS += -g -Wall -O0 -std=c11
|
|
LDFLAGS += -fsanitize=address
|
|
|
|
PROGS = find-idents
|
|
|
|
all: $(PROGS)
|
|
|
|
find-idents: find-idents.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean :
|
|
$(RM) $(PROGS) *.o
|