[Mockpp-commits] mockpp/mockpp/examples Makefile.am,1.13,1.14
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-09-17 08:14:04
|
Update of /cvsroot/mockpp/mockpp/mockpp/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8019/mockpp/examples Modified Files: Makefile.am Log Message: fixed compilation ambiguity when #including some header Index: Makefile.am =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/examples/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- Makefile.am 24 Mar 2005 20:51:30 -0000 1.13 +++ Makefile.am 17 Sep 2005 08:13:53 -0000 1.14 @@ -1,6 +1,7 @@ SUBDIRS= tutorial -INCLUDES = $(all_includes) -I$(top_srcdir) $(EA_EXTRA_INC) +INCLUDES = $(all_includes) -I$(top_srcdir) -I$(top_builddir) +DEFAULT_INCLUDES = $(INCLUDES) noinst_PROGRAMS = mock_greeter @@ -11,4 +12,4 @@ mock_greeter_LDADD = $(top_builddir)/mockpp/libmockpp.la $(EA_EXTRA_LIB) $(LIBDL) $(LIBCPPUNIT) \ -lstdc++ -mock_greeter_LDFLAGS = -L/opt/intel_cc_80/lib +mock_greeter_LDFLAGS = -L/opt/intel_cc_80/lib |