From c33d2699ff0790e47c865a118332ca72ecbcf708 Mon Sep 17 00:00:00 2001 From: parkerh Date: Thu, 4 Apr 2019 16:56:52 -0500 Subject: [PATCH] remove .elf file type --- makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/makefile b/makefile index bbab070..ee6041a 100644 --- a/makefile +++ b/makefile @@ -30,19 +30,19 @@ endif # All Target -all: ina_bm.elf secondary-outputs +all: ina_bm secondary-outputs # Tool invocations -ina_bm.elf: $(OBJS) $(USER_OBJS) +ina_bm: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @echo 'Invoking: CXX' - $(CXX) -o "ina_bm.elf" $(OBJS) $(USER_OBJS) $(LIBS) + $(CXX) -o "ina_bm" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' # Other Targets clean: - -$(RM) $(ELFSIZE) ina_bm.elf + -$(RM) $(ELFSIZE) ina_bm -@echo ' ' secondary-outputs: $(ELFSIZE)