nstall raw_bitfield.h
[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 = pset.h set.h pmap.h eset.h hashptr.h array.h pdeq.h iterator.h align.h fourcc.h util.h plist.h \
20                       bipartite.h xmalloc.h gaussjordan.h hungarian.h raw_bitset.h
21
22 SOURCES = Makefile.in                           \
23         array.c obst.h pdeq.c   \
24         set.c pset.c pmap.c eset.c iterator.c xmalloc.h \
25         plist.c bipartite.c gaussjordan.c hungarian.c
26
27 ifeq ($(disable_libiberty),no)
28 SOURCES += xmalloc.c
29 ADDLIB =
30 else
31 ADDLIB = xmalloc.o
32
33 xmalloc.o: xmalloc.c
34         $(COMPILE.c) -o $@ $<
35 endif
36
37 include $(topdir)/MakeRules
38
39 CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug -I$(topdir)/ir/config
40
41 include $(top_srcdir)/MakeTargets
42
43 all: subdir.o $(ADDLIB)