labwc/scripts/helper/Makefile

13 lines
171 B
Makefile
Raw Normal View History

2023-01-30 21:24:52 +00:00
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