From d5dcfbc528651d4dfd2aa240a9f4e00a0094282f Mon Sep 17 00:00:00 2001 From: Michaelangel007 Date: Thu, 19 Apr 2018 09:01:09 -0700 Subject: [PATCH] Rename to dump list in prep for dump sym --- Makefile | 13 +++++++++++-- dump_frag.c => dump_list.c | 0 2 files changed, 11 insertions(+), 2 deletions(-) rename dump_frag.c => dump_list.c (100%) 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