From 347a01d6b570e0a593e179139d938b5d8595010d Mon Sep 17 00:00:00 2001 From: Chris Eagle Date: Fri, 25 Sep 2015 00:20:02 -0700 Subject: [PATCH] spaces to tabs in Makefile --- bindings/java/Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/bindings/java/Makefile b/bindings/java/Makefile index 6d274add..df1916be 100644 --- a/bindings/java/Makefile +++ b/bindings/java/Makefile @@ -1,26 +1,26 @@ .PHONY: gen_const clean jar all lib samples install all: gen_const - $(MAKE) -f Makefile.build all + $(MAKE) -f Makefile.build all lib: - $(MAKE) -f Makefile.build lib + $(MAKE) -f Makefile.build lib -samples: - $(MAKE) -f Makefile.build samples +samples: + $(MAKE) -f Makefile.build samples jar: - $(MAKE) -f Makefile.build jar + $(MAKE) -f Makefile.build jar install: lib jar - $(MAKE) -f Makefile.build install + $(MAKE) -f Makefile.build install gen_const: - cd .. && python const_generator.py java + cd .. && python const_generator.py java clean: - rm -f unicorn/*.class - rm -f samples/*.class - rm -f *.so - rm -f *.dylib - rm -f *.dll + rm -f unicorn/*.class + rm -f samples/*.class + rm -f *.so + rm -f *.dylib + rm -f *.dll