Fixed issues in Makefile

* fixed Makefile
* tweaked .gitignore
This commit is contained in:
Steins7 2020-01-26 12:21:08 +01:00
parent 9ba08bb630
commit e0d4f8c5f1
2 changed files with 2 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,4 +1,5 @@
bin
.gdb_history
src/tags
*tags
*.taghl
*.~lock*

View File

@ -104,8 +104,6 @@ ${BIN}/%.elf : ${MAIN_OBJECT_FILES} ${COMMON_OBJECT_FILES}
@echo
@echo ==== linking $@ ====
@echo ${COMMON_OBJECT_FILES}
@echo ====================
@echo ${LIBRARIES}
@echo
${DIR_GUARD}
${CC} ${CFLAGS} --verbose -o $@ ${filter-out %ld, $^} ${LIBRARIES} ${LDFLAGS}