diff --git a/Makefile b/Makefile index 4db6d75..bd26aa1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,14 @@ -all: dump_frag +TARGETS = dump_list +all: $(TARGETS) -dump_frag: dump_frag.c +.PHONY: clean + +clean: + $(RM) $(TARGETS) + +dump_list: dump_list.c + gcc -o $@ $< + +dump_sym: dump_sym.c gcc -o $@ $< diff --git a/dump_frag.c b/dump_list.c similarity index 100% rename from dump_frag.c rename to dump_list.c