## * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ## * 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 doc pkgdata_DATA = LICENSE AUTHORS COPYING.LIB EXTRA_DIST = .indent.pro LICENSE java-sablevm.m4.sh ChangeLog INSTALL-DEVEL bin_SCRIPTS = java-sablevm CLEANFILES = java-sablevm ChangeLog # for path substitution in the script we need to get "bindir" from make time # and NOT install time! BUILT_SOURCES = java-sablevm java-sablevm: java-sablevm.m4.sh rm -f java-sablevm m4 -P java-sablevm.m4.sh -DSABLEVM_BINARY=@bindir@/sablevm >java-sablevm chmod a-w java-sablevm ChangeLog: svn log -v > ChangeLog 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