File: fix_clean_target

package info (click to toggle)
f2j 0.8.1%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 3,152 kB
  • sloc: ansic: 18,992; java: 3,987; yacc: 3,804; sh: 153; makefile: 149
file content (33 lines) | stat: -rw-r--r-- 826 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Subject: remove targets referencing testing
Author: Olivier Sallou <olivier.sallou@irisa.fr>
Description: test and clean targets refer to testing dir but it 
 does not exists. This creates an infinite loop on those targets.
Last-Updated: 24/01/2012
--- a/libbytecode/Makefile.in
+++ b/libbytecode/Makefile.in
@@ -21,7 +21,7 @@
 dlist.o: dlist.h dlist.c
 
 test:
-	cd testing; $(MAKE) test
+	#cd testing; $(MAKE) test
 
 docs:
 	$(DOXYGEN)
@@ -32,4 +32,4 @@
 
 clean:
 	/bin/rm -rf *.o *.a latex html
-	cd testing; $(MAKE) clean
+	#cd testing; $(MAKE) clean
--- a/src/Makefile
+++ b/src/Makefile
@@ -74,7 +74,7 @@
 clean:
 	rm -f *.o *.class f2jparse.c y.tab.c y.tab.h \
 	tmp f2j f2java core a.out *.output *~  *.vcg
-	cd test; $(MAKE) clean
+	#cd test; $(MAKE) clean
 
 realclean: clean
 	rm -f ../bin/f2java ../bin/puref2j