Skip to content

Commit

Permalink
remove .elf file type
Browse files Browse the repository at this point in the history
  • Loading branch information
parkerh committed Apr 4, 2019
1 parent ef09a92 commit c33d269
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c33d269

Please sign in to comment.