From 9ead350f88b734b55002e92e887a7821bb951660 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Tue, 31 Jan 2017 23:39:37 +0100 Subject: [PATCH] Show linker action during make. --- src/Makefile | 2 +- src/scripts/Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index e4e2fae..ddf3d15 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,7 +10,7 @@ clean: vimb: $(OBJ) @echo "$(CC) $@" - @$(CC) $(LDFLAGS) $(OBJ) -o $@ + $(CC) $(LDFLAGS) $(OBJ) -o $@ $(OBJ): config.h $(BASEDIR)/config.mk diff --git a/src/scripts/Makefile b/src/scripts/Makefile index 32af191..93f242d 100644 --- a/src/scripts/Makefile +++ b/src/scripts/Makefile @@ -10,7 +10,6 @@ clean: scripts.h: $(JSFILES) @echo "create $@ from *.js" - @echo > $@ @for file in $(JSFILES); do \ ./js2h.sh $$file >> $@; \ done -- 2.20.1