this file is not needed
authorBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 17 Dec 2001 18:36:34 +0000 (18:36 +0000)
committerBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 17 Dec 2001 18:36:34 +0000 (18:36 +0000)
[r289]

Makefile [deleted file]
ir/Makefile [deleted file]
ir/adt/Makefile [deleted file]
ir/common/Makefile [deleted file]
ir/debug/Makefile [deleted file]
ir/ident/Makefile [deleted file]
ir/ir/Makefile [deleted file]
ir/ir/iropt.c
ir/tr/Makefile [deleted file]
ir/tv/Makefile [deleted file]
testprograms/Makefile [deleted file]

diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index cb06cf1..0000000
--- a/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2001 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Main Makefile
-
-# This makefile makes firm and/or the testprograms.
-
-SUBDIRS = ir testprograms
-
-ifeq (,($MAKE))
-MAKE = /usr/bin/make -k
-endif
-
-#MAKE = ${MAKE:-/usr/bin/make} #  Vorschlag Uwe
-#MAKE = /usr/bin/make -k
-#SHELL   = /bin/sh
-
-.PHONY: default all clean realclean install depend ir testprograms
-
-# Makes the intermediate representation and bundles it into a
-# library
-ir:
-       $(MAKE) -C ir
-# Makes the library, i.e., compiles and bundles the intermediate
-# representation and extracts the necessary headers into directory
-# include.
-lib:   ir
-       $(MAKE) -C ir lib
-
-# Makes the testprograms.
-testprograms:
-       $(MAKE) -C testprograms
-
-# Makes everything
-all:   TAGS ir lib testprograms
-
-
-clean:
-       for i in $(SUBDIRS); do  $(MAKE) -C $$i clean; done
-
-realclean:
-       for i in $(SUBDIRS); do  $(MAKE) -C $$i realclean; done
-       rm -f libfirm.a core include/*.h TAGS
-
-TAGFILES = $(shell find . -name '*.c' -o -name '*.h')
-
-TAGS:   $(TAGFILES)
-       etags -C $(TAGFILES)
diff --git a/ir/Makefile b/ir/Makefile
deleted file mode 100644 (file)
index db6786c..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for IR library.
-
-# This makefile descends to all directories listed in INCLUDES
-# and calls make with the corresponding target there.
-# After returning it builds a library out of the firm files.
-# Further it updates the TAGS file with each recompilation
-
-SUBDIRS = adt common debug ident ir tr tv
-INCLUDES = -I../adt -I../common -I../debug -I../ident -I../include \
-          -I../ir -I../tr -I../tv
-OFILES =
-
-AR          = ar rcs
-
-MAKE    = /usr/bin/make -k
-SHELL   = /bin/sh
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic # -g
-COPTFLAGS   = -O3 -ffast-math # -fno-caller-saves
-
-TARGET = libfirm.a
-
-.PHONY: default all clean realclean install depend $(TARGET)
-
-$(TARGET):
-#      mkdir objects
-       for i in $(SUBDIRS); do $(MAKE) "INCLUDES=$(INCLUDES)" "CXXFLAGS=-g" -C $$i; done
-       $(AR) $(TARGET) objects/*.o
-       mv $(TARGET) ..
-
-debug:
-       for i in $(SUBDIRS); do $(MAKE) "CFLAGS=$(CFLAGS) -g INCLUDES=$(INCLUDES)" -C $$i; done
-
-all:   TAGS $(TARGET)
-
-lib:
-       for i in $(SUBDIRS); do  $(MAKE) -C $$i lib; done
-
-clean:
-       for i in $(SUBDIRS); do  $(MAKE) -C $$i clean; done
-
-realclean:
-       for i in $(SUBDIRS); do  $(MAKE) -C $$i realclean; done
-       rm -f $(TARGET) core
-
-profile:        realclean
-       for i in $(SUBDIRS); do  \
-                        $(MAKE) \
-                        "CXX=$(CXX)" \
-                        "CFLAGS=-g -pg" \
-                       "INCLUDES=$(INCLUDES)" -C $$i; \
-        done
-
-
-TAGFILES = $(shell find . -name '*.c' -o -name '*.h')
-
-TAGS:   $(TAGFILES)
-       etags -C $(TAGFILES)
diff --git a/ir/adt/Makefile b/ir/adt/Makefile
deleted file mode 100644 (file)
index f9a857d..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-## Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for adt -- abstract data types
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-MEMBERS         = array.m pdeq.m set.m debug.m
-
-CFILES = $(MEMBERS:.m=.c)
-CFIMES +=  xmalloc.c
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES +=  cookies.h host.h obst.h pset.h
-HFILES +=  misc.h tune.h debug.h
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-OFILES += ../objects/xmalloc.o ../objects/pset.o
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-$(TARGET): $(DFILES) $(OFILES)
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-# a hack to force recompilation
-../objects/pset.o : set.c pset.h ../objects/set.o
-       $(COMPILE.c) $(INCLUDES) -DPSET -o $@ $<
-#      $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
-
--include $(DFILES)
diff --git a/ir/common/Makefile b/ir/common/Makefile
deleted file mode 100644 (file)
index 33a340d..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-## Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for common
-
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug -I../ident -I../../include \
-             -I../ir -I../tr -I../tv
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS = common.m firm.m
-MEMBERS         =  $(DISTRIBMEMBERS) panic.m
-
-CFILES = $(MEMBERS:.m=.c)
-CFILES +=  xfprintf.c xfprintf.c xfprintf.c
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES +=  tune.h xp_help.h xprintf.h misc.h bool.h
-HFILES +=  common.h debug.h entity.h gmp.h host.h ident.h irgraph.h \
-          irmode.h irnode.h irop.h irprog.h label.h misc.h obst.h \
-           pset.h set.h tv.h type.h xprintf.h xp_help.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-DISTRIB += bool.h
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-OFILES +=  ../objects/xfprintf.o \
-          ../objects/xgprintf.o \
-          ../objects/xoprintf.o \
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-$(TARGET): $(DFILES) $(OFILES)
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-       cp $(DISTRIB) ../../include
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
diff --git a/ir/debug/Makefile b/ir/debug/Makefile
deleted file mode 100644 (file)
index 05ee4c6..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-## Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for debug -- debugging of compiler and compiled program.
-
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../debug -I../ir -I../ident
-X_INCLUDES  =
-
-AR          = ar rcs
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS =
-MEMBERS         = $(DISTRIBMEMBERS) debinfo.m
-
-CFILES = $(MEMBERS:.m=.c)
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES +=  misc.h host.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-
-$(TARGET):      $(DFILES) $(OFILES)
-
-lib:
-#      cp $(DISTRIB) ../../include/
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
diff --git a/ir/ident/Makefile b/ir/ident/Makefile
deleted file mode 100644 (file)
index dd24f78..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for ident -- ??
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug -I../ident
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS = ident.m
-MEMBERS         = $(DISTRIBMEMBERS)
-
-CFILES = $(MEMBERS:.m=.c)
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES += ident_t.h
-HFILES += array.h cookies.h debug.h host.h misc.h set.h tune.h xprintf.h \
-         xp_help.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-$(TARGET):      $(DFILES) $(OFILES)
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-       cp $(DISTRIB) ../../include
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
diff --git a/ir/ir/Makefile b/ir/ir/Makefile
deleted file mode 100644 (file)
index c6fac71..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for ir -- intermediate representation of the program
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug -I../ident -I../include \
-             -I../ir -I../tr -I../tv
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS = ircons.m irdump.m irflag.m irgmod.m irgraph.m irgopt.m \
-           irgwalk.m irmode.m irnode.m irop.m iropt.m irprog.m irvrfy.m
-MEMBERS = $(DISTRIBMEMBERS)
-
-CFILES = $(MEMBERS:.m=.c)
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES +=  irnode_t.h irgraph_t.h ir_prog.h irop_t.h irmode_t.h
-HFILES +=  array.h common.h cookies.h debug.h entity.h gmp.h  \
-           host.h ident.h label.h misc.h obst.h pdeq.h pset.h \
-           set.h tune.h tv.h type.h xprintf.h xp_help.h irnode2.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-DISTRIB += old_fctnames.h
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-
-$(TARGET): $(DFILES) $(OFILES)
-
-# the preprocessor computes the dependencies and saves them to a file
-# the sed script adds the path to ../objects and file.d to the dependency.
-%.d:   %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:        %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-       cp $(DISTRIB) ../../include
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
index e1de1bc..c848866 100644 (file)
@@ -868,6 +868,8 @@ identify (pset *value_table, ir_node *n)
 {
   ir_node *o = NULL;
 
+
+
   if (!value_table) return n;
 
   switch (get_irn_opcode (n)) {
diff --git a/ir/tr/Makefile b/ir/tr/Makefile
deleted file mode 100644 (file)
index c17a176..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for tr -- the type representation
-
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug -I../ident -I../include \
-             -I../ir -I../tr -I../tv
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS  = entity.m type.m typewalk.m tpop.m
-MEMBERS         =  $(DISTRIBMEMBERS) mangle.m
-
-CFILES = $(MEMBERS:.m=.c)
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES +=  type_or_entity.h
-HFILES +=  common.h debug.h gmp.h host.h ident.h irgraph.h  \
-           irgwalk.h irmode.h irnode.h irop.h label.h misc.h \
-           obst.h pset.h set.h tv.h xprintf.h xp_help.h entity_t.h \
-          type_t.h tpop_t.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-DISTRIB += type_or_entity.h
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-$(TARGET):      $(DFILES) $(OFILES)
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/\($*\)\.o[ :]*/\.\.\/objects\/\1.o $@ : /g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-       cp $(DISTRIB) ../../include
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
diff --git a/ir/tv/Makefile b/ir/tv/Makefile
deleted file mode 100644 (file)
index 68e0c4b..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Hey, emacs, this is a -*- makefile -*-
-#
-# Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-# All rights reserved.
-# Author: Goetz Lindenmaier
-#
-# Makefile for tv -- constant table and machine arithmetic
-CXX         = gcc
-CFLAGS      = -pipe -Wall # -ansi -pedantic
-CXXFLAGS    = # -g
-COPTFLAGS   = -O3
-LDFLAGS     =
-DEPENDFLAGS = -M
-LIBPATH     =
-LIBS        =
-X_LIBS      =
-INCLUDES    = -I../adt -I../common -I../debug -I../ident -I../include \
-             -I../ir -I../tr -I../tv
-X_INCLUDES  =
-
-SHELL       = /bin/sh
-MAKE        = /usr/bin/make
-
-DISTRIBMEMBERS  = tv.m
-MEMBERS         =  $(DISTRIBMEMBERS)
-
-CFILES = $(MEMBERS:.m=.c)
-
-HFILES = $(MEMBERS:.m=.h)
-HFILES += tv_t.h
-HFILES += ieee754.h
-
-HFILES += common.h debug.h entity.h gmp.h ident.h irmode.h obst.h \
-         pset.h tune.h type.h xprintf.h xp_help.h
-
-DISTRIB = $(DISTRIBMEMBERS:.m=.h)
-
-OFILES = $(MEMBERS:%.m=../objects/%.o)
-
-DFILES = $(MEMBERS:.m=.d)
-
-TARGET = all
-
-.PHONY: default all clean realclean install depend
-.SUFFIXES: .d .h .c .o
-.DEFAULT: $(TARGET)
-.SILENT: $(DFILES) clean  # hides output
-
-$(TARGET):      $(DFILES) $(OFILES)
-
-%.d:    %.c
-       $(SHELL) -ec '$(CXX) $(DEPENDFLAGS) $(INCLUDES) $(X_INCLUDES) $< | sed '\''s/$*\\.o[ :]*/& $@/g'\'' > $@'
-
-
-../objects/%.o:    %.c
-       $(CXX) $(CFLAGS) $(CXXFLAGS) $(COPTFLAGS) $(INCLUDES) $(X_INCLUDES) -c $< -o $@
-
-lib:
-       cp $(DISTRIB) ../../include
-
-clean:
-       rm -f $(OFILES) $(DFILES)
-
-realclean:     clean
-       rm -f $(TARGET) *.flc TAGS \#*
-       rm -rf auto/
-
--include $(DFILES)
diff --git a/testprograms/Makefile b/testprograms/Makefile
deleted file mode 100644 (file)
index 927991b..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-DIRS = adt common debug ident ir tr tv
-INCDIRS = -I../include -I../fe/elifirm
-
-LIBDIRS=-L.. -L/usr/public/lib/gmp/
-
-LIBS=-lfirm -lgmp
-
-%.o:   %.c ../libfirm.a
-       gcc -c $(INCDIRS) -g $<
-
-all: empty const_eval_example                                  \
-     if_example if_else_example if_while_example cond_example  \
-     call_str_example memory_example array-stack_example       \
-     array-heap_example oo_program_example inheritance_example \
-     irr_cf_example    \
-     irr_loop_example dead_block_example global_var_example    \
-     three_cfpred_example evaluate
-
-clean:
-       rm -f                                   \
-       empty const_eval_example                \
-       if_example if_else_example              \
-       if_while_example cond_example           \
-       call_str_example memory_example         \
-       array-stack_example array-heap_example  \
-       oo_program_example inheritance_example  \
-       irr_cf_example  \
-       irr_loop_example dead_block_example     \
-       global_var_example three_cfpred_example \
-       *.o *.vcg core
-
-realclean:     clean
-       rm -f \#* *.flc
-       rm -rf auto/
-
-run:
-       ./empty;                \
-       const_eval_example;     \
-       if_example;             \
-       if_else_example;        \
-       if_while_example;       \
-       cond_example;           \
-       call_str_example;       \
-       memory_example;         \
-       array-stack_example;    \
-       array-heap_example;     \
-       oo_program_example;     \
-       inheritance_example;    \
-       irr_cf_example;         \
-       irr_loop_example;       \
-       dead_block_example;     \
-       global_var_example;     \
-       three_cfpred_example;
-
-empty: empty.o
-       gcc -o empty empty.o $(LIBDIRS) $(LIBS)
-
-const_eval_example: const_eval_example.o
-       gcc -o const_eval_example const_eval_example.o $(LIBDIRS) $(LIBS)
-
-if_example: if_example.o
-       gcc -o if_example if_example.o $(LIBDIRS) $(LIBS)
-
-if_else_example: if_else_example.o
-       gcc -o if_else_example if_else_example.o $(LIBDIRS) $(LIBS)
-
-if_while_example: if_while_example.o
-       gcc -o if_while_example if_while_example.o $(LIBDIRS) $(LIBS)
-
-cond_example: cond_example.o
-       gcc -o cond_example cond_example.o $(LIBDIRS) $(LIBS)
-
-call_str_example: call_str_example.o
-       gcc -o call_str_example call_str_example.o $(LIBDIRS) $(LIBS)
-
-memory_example: memory_example.o
-       gcc -o memory_example memory_example.o $(LIBDIRS) $(LIBS)
-
-array-stack_example: array-stack_example.o
-       gcc -o array-stack_example array-stack_example.o $(LIBDIRS) $(LIBS)
-
-array-heap_example: array-heap_example.o
-       gcc -o array-heap_example array-heap_example.o $(LIBDIRS) $(LIBS)
-
-oo_program_example: oo_program_example.o
-       gcc -o oo_program_example oo_program_example.o $(LIBDIRS) $(LIBS)
-
-inheritance_example: inheritance_example.o
-       gcc -o inheritance_example inheritance_example.o $(LIBDIRS) $(LIBS)
-
-irr_cf_example: irr_cf_example.o
-       gcc -o irr_cf_example irr_cf_example.o $(LIBDIRS) $(LIBS)
-
-irr_loop_example: irr_loop_example.o
-       gcc -o irr_loop_example irr_loop_example.o $(LIBDIRS) $(LIBS)
-
-dead_block_example: dead_block_example.o
-       gcc -o dead_block_example dead_block_example.o $(LIBDIRS) $(LIBS)
-
-global_var_example: global_var_example.o
-       gcc -o global_var_example global_var_example.o $(LIBDIRS) $(LIBS)
-
-three_cfpred_example: three_cfpred_example.o
-       gcc -o three_cfpred_example three_cfpred_example.o $(LIBDIRS) $(LIBS)
-
-evaluate: evaluate.o
-       gcc -o evaluate evaluate.o $(LIBDIRS) $(LIBS)