From: Daniel Carl Date: Tue, 31 Jan 2017 22:39:37 +0000 (+0100) Subject: Show linker action during make. X-Git-Url: https://git.owens.tech/projects.html/projects.html/git?a=commitdiff_plain;h=9ead350f88b734b55002e92e887a7821bb951660;p=vimb.git Show linker action during make. --- 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