[svn r637] Added automake task to auto-indent all the source files. trunk
authorrosfran
Mon May 07 16:00:13 2007 +0100 (2007-05-07)
branchtrunk
changeset 631f90eb1794afd
parent 630 8b8efd570497
child 632 ce0055d90cc5
[svn r637] Added automake task to auto-indent all the source files.
gmyth/src/Makefile.am
     1.1 --- a/gmyth/src/Makefile.am	Mon May 07 14:26:39 2007 +0100
     1.2 +++ b/gmyth/src/Makefile.am	Mon May 07 16:00:13 2007 +0100
     1.3 @@ -97,6 +97,14 @@
     1.4  	gmyth_file.h				\
     1.5  	gmyth_file_local.h
     1.6  
     1.7 +indent: 
     1.8 +	for src_file in $(libgmyth_la_SOURCES); do \
     1.9 +		indent -gnu -i4 -l80 -bfda -nut -pcs -psl -bli0 -cs -cli4 -nbfda -sai -saw -saf -sbi4 -npro -nfca $$src_file; \
    1.10 +	done; \
    1.11 +	for inc_file in $(libgmyth_include_HEADERS); do \
    1.12 +		indent -gnu -i4 -l80 -bfda -nut -pcs -psl -bli0 -cs -cli4 -nbfda -sai -saw -saf -sbi4 -npro -nfca $$inc_file; \
    1.13 +	done;
    1.14 +
    1.15  CLEANFILES = $(BUILT_SOURCES) \
    1.16  	*.gcda \
    1.17  	*.gcno \