labwc/scripts/helper/Makefile
2023-07-06 18:04:55 +01:00

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