# HG changeset patch
# User etisserant
# Date 1237476090 -3600
# Node ID bfa2e7806d7df1fa2063847bddc2064a060874aa
# Parent  59f5197b088a17cb5f8057d374f99971966b17aa
Fixed (again) some Makefile quirks.

diff -r 59f5197b088a -r bfa2e7806d7d absyntax/Makefile
--- a/absyntax/Makefile	Mon Mar 02 09:27:55 2009 +0100
+++ b/absyntax/Makefile	Thu Mar 19 16:21:30 2009 +0100
@@ -10,7 +10,6 @@
 
 clean:
 	rm -f *.o
-	find . -depth -mindepth 2 -maxdepth 2 -name Makefile -printf %h\\n | xargs -i make -C{} $@
 
 
 #get warnings, debugging information and optimization
diff -r 59f5197b088a -r bfa2e7806d7d stage1_2/Makefile
--- a/stage1_2/Makefile	Mon Mar 02 09:27:55 2009 +0100
+++ b/stage1_2/Makefile	Thu Mar 19 16:21:30 2009 +0100
@@ -12,12 +12,18 @@
 	-rm -f iec.flex.c iec.y.cc iec.y.hh iec.y.output
 	-rm -f iec.noerrorcheck.y
 	-rm -f test_flex
+	-rm -f stage1_2.o
+	-rm -f iec.y.o
+	-rm -f iec.flex.o
+
 
 CFLAGS += -I. -I../* -I../../absyntax
 
 iec.flex.c: iec.flex
 	flex -oiec.flex.c iec.flex
 
+stage1_2.cc: iec.y.hh
+
 iec.flex.o: iec.y.hh iec.flex.c
 	$(CXX) -c iec.flex.c -D DEFAULT_LIBDIR='"$(IECLIBDIR)"' $(CFLAGS)