X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2FMakefile.in;h=b4d8f5b72c2bd8b0f7580b62c252923414940eb5;hb=affe4623a8bf6e94ebe8eb9878d17ed30b36e1ba;hp=d2d006008ec6cda175ed410d2ca35a2db0cbe40d;hpb=b3f602ef0d4d746719d97f3ed7f9f4746261f327;p=libfirm diff --git a/ir/adt/Makefile.in b/ir/adt/Makefile.in index d2d006008..b4d8f5b72 100644 --- a/ir/adt/Makefile.in +++ b/ir/adt/Makefile.in @@ -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)