Index: iver/Makefile
===================================================================
--- driver/Makefile	(revision 1ead581d1eb8f71e941f376caeae87f074c1f192)
+++ 	(revision )
@@ -1,31 +1,0 @@
-###
-### This file is part of the Cforall project
-###
-### $Id: Makefile.in,v 1.5 2005/08/26 19:16:54 rcbilson Exp $
-###
-
-CXX=g++
-CXXFLAGS=-g -Wall -I.. #-Wno-unused
-CP=gcc -E
-INSTALL=/usr/bin/install -c
-
-SRCS:=cfa.cc cc1.cc
-OBJECTS:=$(SRCS:.cc=.o)
-DEPS:=$(SRCS:.cc=.d)
-
-all: cfa cc1
-
-cfa: cfa.o
-	$(CXX) $< -o $@
-
-cc1 : cc1.o
-	$(CXX) $< -o $@
-
-install: cfa cc1
-	$(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/bin
-	$(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) cc1 /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) cfa /u/pabuhr/software/cfa/cfa-cc/bin
-
-clean:
-	rm -f cfa cc1 $(OBJECTS) $(DEPS) core
Index: bcfa/Makefile
===================================================================
--- libcfa/Makefile	(revision 1ead581d1eb8f71e941f376caeae87f074c1f192)
+++ 	(revision )
@@ -1,34 +1,0 @@
-INSTALL=/usr/bin/install -c
-BACKEND_CC := /u/pabuhr/bin/gcc
-
-LIBRARIES := libcfa.a builtins.cf
-
-all: $(LIBRARIES)
-
-install: all
-	$(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) prelude.cf /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) builtins.cf /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) libcfa.a /u/pabuhr/software/cfa/cfa-cc/lib
-
-# make forward declarations for gcc builtins
-builtins.cf: builtins.c builtins.def
-	/u/pabuhr/bin/gcc -E builtins.c | sed 's/"//g' > builtins.cf
-
-libcfa-prelude.c: ../translator/cfa-cpp prelude.cf builtins.cf
-	../translator/cfa-cpp -l prelude.cf $@
-
-libcfa-prelude.o: libcfa-prelude.c
-	$(BACKEND_CC) -c -o $@ $<
-
-libcfa.a: libcfa-prelude.o
-	ar crs $@ $^
-
-EXTRA_OUTPUT += libcfa-prelude.o libcfa-prelude.c
-
-# clean-up rule
-clean:
-	rm -f $(LIBRARIES) $(EXTRA_OUTPUT)
-
-distclean: clean
-
Index: anslator/Makefile
===================================================================
--- translator/Makefile	(revision 1ead581d1eb8f71e941f376caeae87f074c1f192)
+++ 	(revision )
@@ -1,59 +1,0 @@
-# This makefile is adapted from Peter Miller's article
-# "Recursive Make Considered Harmful"
-#
-# http://www.pcug.org.au/~millerp/rmch/recu-make-cons-harm.html
-
-MODULES := Common Parser SynTree SymTab ResolvExpr CodeGen ControlStruct GenPoly Tuples InitTweak Designators #Try ArgTweak Explain
-TARGET := cfa-cpp
-
-all: $(TARGET)
-
-# look for include files in each of the modules
-CXX := g++
-CXXFLAGS += -Wno-deprecated -Wall -g -DDEBUG_ALL -I. -I Common -MMD
-INSTALL=/usr/bin/install -c
-
-# this is the back-end compiler, used to compile libcfa & builtins to link with user code
-BACKEND_CC := /u/pabuhr/bin/gcc
-
-# uncomment the definition of this variable to enable purify
-#  (do a "purerun" first)
-#PURIFY := purify --cache-dir=$(HOME)/tmp
-
-# extra libraries if required
-LIBS :=
-
-# each module will add to this
-SRC := main.cc MakeLibCfa.cc
-
-# other things that ought to be cleaned up
-EXTRA_OUTPUT := core
-
-# include the description for each module
-include $(patsubst %,%/module.mk,$(MODULES))
-
-# determine the object files
-OBJ := $(patsubst %.cc,%.o,$(filter %.cc,$(SRC))) \
-       $(patsubst %.y,%.tab.o,$(filter %.y,$(SRC))) \
-       $(patsubst %.l,%.yy.o,$(filter %.l,$(SRC)))
-
-# include the C include dependencies
-DEPS := $(OBJ:.o=.d)
--include $(DEPS)
-
-# link the program
-$(TARGET): $(OBJ)
-	$(PURIFY) $(CXX) -o $@ $(OBJ) $(LIBS)
-
-#installing
-install: $(TARGET)
-	$(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/lib
-	$(INSTALL) $(TARGET) /u/pabuhr/software/cfa/cfa-cc/lib
-
-# clean-up rule
-clean:
-	rm -f $(OBJ) $(DEPS) $(TARGET) tags $(EXTRA_OUTPUT)
-	find . -name "Expected*" -prune -o \( -name "*.tst" -o -name "report" \) -print | xargs rm -f
-	find . -name "core*" -print | xargs rm -f
-
-distclean: clean
