/hg/gfx-test: Changed Makefile so it properly creates ./build an...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Jul 8 07:56:47 PDT 2010


changeset 748e145c2613 in /hg/gfx-test
details: http://icedtea.classpath.org/hg/gfx-test?cmd=changeset;node=748e145c2613
author: Pavel Tisnovsky <ptisnovs at redhat.com>
date: Thu Jul 08 16:54:51 2010 +0200

	Changed Makefile so it properly creates ./build and ./output
	directories during build.


diffstat:

1 file changed, 9 insertions(+), 3 deletions(-)
Makefile |   12 +++++++++---

diffs (40 lines):

diff -r 73045f8d6b30 -r 748e145c2613 Makefile
--- a/Makefile	Thu Jul 08 12:35:51 2010 +0000
+++ b/Makefile	Thu Jul 08 16:54:51 2010 +0200
@@ -33,11 +33,19 @@ TESTSUITES = $(shell ls -1 src/org/gfxte
 
 all:	build runtests compareresults
 
-build:	gfxtest.jar
+build:	$(CLASSES)/stamp $(OUTPUT)/stamp gfxtest.jar
 
 test_framework:	$(FRAMEWORK_CLASSES)
 
 test_suites:	$(TESTSUITE_CLASSES)
+
+$(CLASSES)/stamp:
+	mkdir -p $(CLASSES)
+	touch $(CLASSES)/stamp
+
+$(OUTPUT)/stamp:
+	mkdir -p $(OUTPUT)
+	touch $(OUTPUT)/stamp
 
 $(CLASSES)/$(FRAMEWORK_DIR)/%.class:	$(SOURCEPATH)/$(FRAMEWORK_DIR)/%.java
 	$(JAVAC) -d $(CLASSES) -sourcepath src/ $<
@@ -52,7 +60,6 @@ runtests:	gfxtest.jar $(TESTSUITES)
 
 # multiple targets - one for each test suite
 $(TESTSUITES):	gfxtest.jar
-	mkdir -p $(OUTPUT)
 	$(JAVA) -cp gfxtest.jar $(TEST_PACKAGE).$@ $(RUN_OPTIONS)
 
 compareresults:
@@ -65,7 +72,6 @@ clean:
 clean:
 	rm -rf $(CLASSES)
 	rm -f gfxtest.jar
-	mkdir -p $(CLASSES)
 
 clean-results:
 	rm -rf $(OUTPUT)



More information about the distro-pkg-dev mailing list