This is the mail archive of the mauve-patches@sourceware.org mailing list for the Mauve project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: small Makefile change


Hi,

I committed this small Makefile simplification.

Tom

2006-06-18 Thomas Fitzsimmons <fitzsim@redhat.com>

	* Makefile.am (harness_files): Add gnu/testlet/config.java.
	(gnu/testlet/config.class): Remove target.
	* Makefile.in: Regenerate.
Index: Makefile.am
===================================================================
RCS file: /cvs/mauve/mauve/Makefile.am,v
retrieving revision 1.29
diff -u -r1.29 Makefile.am
--- Makefile.am	14 Jun 2006 19:28:27 -0000	1.29
+++ Makefile.am	18 Jun 2006 19:22:22 -0000
@@ -12,6 +12,7 @@
 harness_files = \
 	Harness.java \
 	RunnerProcess.java \
+	gnu/testlet/config.java \
 	gnu/testlet/TestHarness.java \
 	gnu/testlet/Testlet.java \
 	gnu/testlet/TestSecurityManager.java \
@@ -22,17 +23,13 @@
 
 harness:
 	$(JAVAC) $(harness_files)
-	$(JAVAC) gnu/testlet/config.java
 
 all-local: harness
 
-gnu/testlet/config.class: gnu/testlet/config.java
-	$(JAVAC) $(JAVACFLAGS) gnu/testlet/config.java
-
 check-local:
 	$(JAVA) Harness
  
 ## For now can't define this conditionally.
 SUFFIXES = .class .java
 clean-local:
-	find . -name '*.class' -print | xargs rm -f
\ No newline at end of file
+	find . -name '*.class' -print | xargs rm -f

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]