Fix fehler38: meld_psi() did not memorize the next condition when the value operand...
[libfirm] / ir / adt / Makefile.in
index d2d0060..b4d8f5b 100644 (file)
@@ -1,27 +1,79 @@
-# Hey Emacs, this is a -*- makefile -*-
 #
-# libFIRM Project
-#
-# $Id$
+# Project:     libFIRM
+# File name:   ir/adt/Makefile.in
+# Purpose:
+# Author:      Boris Boesler, Till Riedel
+# Modified by:
+# Created:
+# CVS-ID:      $Id$
+# Copyright:   (c) 1999-2003 Universität Karlsruhe
+# Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
 #
 
 top_srcdir := @top_srcdir@
 srcdir = @srcdir@
 topdir = ../..
-subdir := adt
+subdir := ir/adt
+
+INSTALL_HEADERS_ADT = \
+       align.h \
+       array.h \
+       bipartite.h \
+       bitfiddle.h \
+       bitset.h \
+       bitset_ia32.h \
+       bitset_std.h \
+       cpset.h \
+       eset.h \
+       fourcc.h \
+       gaussjordan.h \
+       hashptr.h \
+       hashset.h \
+       hungarian.h \
+       impl.h \
+       iterator.h \
+       list.h \
+       obst.h \
+       offset.h \
+       pdeq.h \
+       plist.h \
+       pmap.h \
+       pqueue.h \
+       pset.h \
+       pset_new.h \
+       raw_bitset.h \
+       set.h \
+       unionfind.h \
+       util.h \
+       xmalloc.h
 
+SOURCES = \
+       Makefile.in \
+       array.c \
+       bipartite.c \
+       cpset.c \
+       eset.c \
+       gaussjordan.c \
+       hashset.c \
+       hungarian.c \
+       iterator.c \
+       pdeq.c \
+       plist.c \
+       pmap.c \
+       pqueue.c \
+       pset.c \
+       pset_new.c \
+       set.c
 
-SOURCES = Makefile.in array.c array.h cookies.h debug.c debug.h host.h obst.h \
-          pdeq.c pdeq.h pset.h set.c set.h xmalloc.c
+ADDLIB = xmalloc.o
+
+xmalloc.o: xmalloc.c
+       $(COMPILE.c) -o $@ $<
 
 include $(topdir)/MakeRules
 
-CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug
-OFILES += pset.o
+CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug -I$(topdir)/ir/config
 
 include $(top_srcdir)/MakeTargets
 
-pset.o:        set.c pset.h
-       $(COMPILE.c) -DPSET -o $@ $<
-
-all: subdir.o
+all: subdir.o $(ADDLIB)