*** empty log message ***
[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
21 SOURCES = Makefile.in                           \
22         array.c obst.h pdeq.c   \
23         set.c pmap.c eset.c iterator.c xmalloc.h \
24         plist.c
25
26 ifeq ($(disable_libiberty),no)
27 SOURCES += xmalloc.c
28 endif
29
30 include $(topdir)/MakeRules
31
32 CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/debug -I$(topdir)/ir/config
33 OFILES += pset.o
34
35 include $(top_srcdir)/MakeTargets
36
37 pset.o: set.c pset.h
38         $(COMPILE.c) -DPSET -o $@ $<
39
40 all: subdir.o