removed unused header
[libfirm] / ir / adt / Makefile.in
1 #
2 # Project:     libFIRM
3 # File name:   ir/adt/Makefile.in
4 # Purpose:
5 # Author:      Boris Boesler, Till Riedel
6 # Modified by:
7 # Created:
8 # CVS-ID:      $Id$
9 # Copyright:   (c) 1999-2003 Universität Karlsruhe
10 # Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11 #
12
13 top_srcdir := @top_srcdir@
14 srcdir = @srcdir@
15 topdir = ../..
16 subdir := ir/adt
17 disable_libiberty := @disable_libiberty@
18
19 INSTALL_HEADERS_ADT = \
20         align.h \
21         array.h \
22         bipartite.h \
23         bitfiddle.h \
24         bitset.h \
25         bitset_ia32.h \
26         bitset_std.h \
27         cpset.h \
28         eset.h \
29         fourcc.h \
30         gaussjordan.h \
31         hashptr.h \
32         hashset.h \
33         hungarian.h \
34         impl.h \
35         iterator.h \
36         list.h \
37         obst.h \
38         offset.h \
39         pdeq.h \
40         plist.h \
41         pmap.h \
42         pqueue.h \
43         pset.h \
44         pset_new.h \
45         raw_bitset.h \
46         set.h \
47         unionfind.h \
48         util.h \
49         xmalloc.h
50
51 SOURCES = \
52         Makefile.in \
53         array.c \
54         bipartite.c \
55         cpset.c \
56         eset.c \
57         gaussjordan.c \
58         hashset.c \
59         hungarian.c \
60         iterator.c \
61         pdeq.c \
62         plist.c \
63         pmap.c \
64         pqueue.c \
65         pset.c \
66         pset_new.c \
67         set.c
68
69 ifeq ($(disable_libiberty),no)
70 SOURCES += xmalloc.c
71 ADDLIB =
72 else
73 ADDLIB = xmalloc.o
74
75 xmalloc.o: xmalloc.c
76         $(COMPILE.c) -o $@ $<
77 endif
78
79 include $(topdir)/MakeRules
80
81 CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug -I$(topdir)/ir/config
82
83 include $(top_srcdir)/MakeTargets
84
85 all: subdir.o $(ADDLIB)