## * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ## * This file is part of SableVM. * ## * See the file "LICENSE" for Copyright information and the * ## * terms and conditions for copying, distribution and * ## * modification of SableVM. * ## * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * SUBDIRS = src pkgdata_DATA = LICENSE AUTHORS COPYING.LIB EXTRA_DIST = .indent.pro LICENSE build build-many indent: find . | \ grep \\.[ch]$$ | \ awk ' \ {print "indent " $$1 " -o " $$1 ".indented; \ if cmp -s " $$1 " " $$1 ".indented; \ then rm " $$1 ".indented; \ else mv " $$1 " " $$1 ".bak; \ mv " $$1 ".indented " $$1 "; \ echo " $$1 "; \ fi"} \ ' | \ sh