X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2FMakefile.in;h=b4d8f5b72c2bd8b0f7580b62c252923414940eb5;hb=6e998f91ca26b38b9022cfe5f3316bd3074bf39f;hp=bd311c178493a9608e1234f4e46f0914667fc386;hpb=20ba3ccbdf7bba5453673997837fd20232e79114;p=libfirm diff --git a/ir/adt/Makefile.in b/ir/adt/Makefile.in index bd311c178..b4d8f5b72 100644 --- a/ir/adt/Makefile.in +++ b/ir/adt/Makefile.in @@ -14,26 +14,66 @@ top_srcdir := @top_srcdir@ srcdir = @srcdir@ topdir = ../.. subdir := ir/adt -disable_libiberty := @disable_libiberty@ -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 +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 obst.h pdeq.c \ - set.c pmap.c eset.c iterator.c 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 -ifeq ($(disable_libiberty),no) -SOURCES += xmalloc.c -endif +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 -I$(topdir)/ir/config -OFILES += pset.o include $(top_srcdir)/MakeTargets -pset.o: set.c pset.h - $(COMPILE.c) -DPSET -o $@ $< - -all: subdir.o +all: subdir.o $(ADDLIB)