Make "make check-c-version" work too

This is not very useful, but still add this target for consistency and to make
Travis CI script work with C too.
This commit is contained in:
Vadim Zeitlin 2016-04-09 01:02:58 +02:00
commit 23d89c2cb4

View file

@ -1759,6 +1759,13 @@ c_compile: $(SRCDIR)$(RUNME).c $(PROXYOBJ)
c_run: c_compile
$(RUNTOOL) ./$(RUNME) $(RUNPIPE)
# -----------------------------------------------------------------
# Version display
# -----------------------------------------------------------------
c_version:
$(CC) --version | head -n 1
# -----------------------------------------------------------------
# Cleaning the C examples
# -----------------------------------------------------------------