From e0d4f8c5f132548b8233d22af748d1c02fcb40e5 Mon Sep 17 00:00:00 2001 From: Steins7 Date: Sun, 26 Jan 2020 12:21:08 +0100 Subject: [PATCH] Fixed issues in Makefile * fixed Makefile * tweaked .gitignore --- .gitignore | 3 ++- Makefile | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e5f90d5..8c2cfda 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ bin .gdb_history -src/tags +*tags *.taghl +*.~lock* diff --git a/Makefile b/Makefile index 2087e39..635993f 100644 --- a/Makefile +++ b/Makefile @@ -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}