From: Michael Beck Date: Mon, 21 Feb 2005 12:06:04 +0000 (+0000) Subject: fixed different configurations X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c6d21550f87a446bc5195dc4e8d4a72a38006c8c;p=libfirm fixed different configurations [r5188] --- diff --git a/testprograms/Makefile.in b/testprograms/Makefile.in index bf402a26c..a6ec133aa 100644 --- a/testprograms/Makefile.in +++ b/testprograms/Makefile.in @@ -15,10 +15,15 @@ srcdir = @srcdir@ topdir = .. subdir := testprograms +enable_libcore := @enable_libcore@ +enable_external_effects := @enable_external_effects@ +disable_libiberty := @disable_libiberty@ + DIFF ?= diff -c0 REF_DIR = $(srcdir)/ref-results SOURCES := Makefile.in \ + tarval_test.c \ array-heap_example.c \ array-stack_example.c \ call_str_example.c \ @@ -62,8 +67,20 @@ CPPFLAGS += -I$(top_srcdir)/ir/adt -I$(top_srcdir)/ir/common -I$(top_srcdir)/ir/ LDFLAGS = -L$(topdir) LDFLAGS+= @LDFLAGS@ -LDLIBS += -lfirm -liberty @LIBS@ -# @@@ TODO replace hand crafted stuff (xml2) for configure +LDLIBS += -lfirm @LIBS@ + +ifeq ($(enable_libcore),yes) +LDLIBS += -lcore +endif + +ifeq ($(enable_external_effects),yes) +LDLIBS += -lxml +endif + +ifeq ($(disable_libiberty),yes) +LDLIBS += -liberty +endif + GENFILES := $(bin_EXAMPLES) *.vcg