Browse code

Show version.h creation commands with V=1.

@ -> $(AM_V_GEN)

Török Edvin authored on 2010/02/16 03:58:24
Showing 2 changed files
... ...
@@ -363,14 +363,14 @@ endif
363 363
 .PHONY: version.h.tmp
364 364
 version.c: version.h
365 365
 version.h: version.h.tmp
366
-	@if test -f version.h.static; then\
366
+	$(AM_V_GEN) if test -f version.h.static; then\
367 367
 		cp version.h.static version.h;\
368 368
 	elif ! diff $@ version.h.tmp >/dev/null 2>/dev/null; then\
369 369
 		cp version.h.tmp $@;\
370 370
 	fi
371 371
 
372 372
 version.h.tmp:
373
-	@test -f version.h || touch version.h;\
373
+	$(AM_V_GEN) test -f version.h || touch version.h;\
374 374
 	rm -f $@;\
375 375
 	REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null || echo "exported")";\
376 376
 	if test "$$REVISION" = "exported"; then\
... ...
@@ -2260,14 +2260,14 @@ uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES
2260 2260
 .PHONY: version.h.tmp
2261 2261
 version.c: version.h
2262 2262
 version.h: version.h.tmp
2263
-	@if test -f version.h.static; then\
2263
+	$(AM_V_GEN) if test -f version.h.static; then\
2264 2264
 		cp version.h.static version.h;\
2265 2265
 	elif ! diff $@ version.h.tmp >/dev/null 2>/dev/null; then\
2266 2266
 		cp version.h.tmp $@;\
2267 2267
 	fi
2268 2268
 
2269 2269
 version.h.tmp:
2270
-	@test -f version.h || touch version.h;\
2270
+	$(AM_V_GEN) test -f version.h || touch version.h;\
2271 2271
 	rm -f $@;\
2272 2272
 	REVISION="$$(LANG=C cd "$(top_srcdir)"; git describe --always 2>/dev/null || echo "exported")";\
2273 2273
 	if test "$$REVISION" = "exported"; then\