win32: indent copied *-enumtypes.c files in make win32-update

This commit is contained in:
Tim-Philipp Müller 2009-03-06 10:35:01 +00:00
parent a647aaf508
commit 4d9bd60c67
2 changed files with 21 additions and 17 deletions

View file

@ -59,8 +59,12 @@ WIN32_COPY = \
$(top_builddir)/_stdint.h
win32-update:
for f in $(WIN32_COPY); do cp $$f win32/common;done
cp $(top_builddir)/win32/common/config.h-new \
for f in $(WIN32_COPY); do cp -v $$f win32/common; done; \
for f in win32/common/*-enumtypes.c; do \
echo "Indenting $$f"; \
gst-indent $$f; gst-indent $$f; \
done
cp -v $(top_builddir)/win32/common/config.h-new \
$(top_srcdir)/win32/common/config.h
include $(top_srcdir)/common/coverage/lcov.mak