[Compbench-devel] CompBenchmarks++/CBM-PI Makefile.am,1.1,1.2
Brought to you by:
xfred
From: Frederic T. <xf...@us...> - 2006-12-28 13:23:44
|
Update of /cvsroot/compbench/CompBenchmarks++/CBM-PI In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20468 Modified Files: Makefile.am Log Message: Fixed output directories. Index: Makefile.am =================================================================== RCS file: /cvsroot/compbench/CompBenchmarks++/CBM-PI/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 28 Dec 2006 00:38:14 -0000 1.1 --- Makefile.am 28 Dec 2006 13:23:38 -0000 1.2 *************** *** 8,15 **** $(CXX) $(INCLUDES) -c $< -o $@ ! CBM.pm: CBM.i swig -c++ $(INCLUDES) -shadow -Wall -perl $< ! CBM.o: CBM.pm $(CXX) $(INCLUDES) -c $(top_srcdir)/CBM-PI/CBM_wrap.cxx `$(PERL) -MExtUtils::Embed -e ccopts` --- 8,15 ---- $(CXX) $(INCLUDES) -c $< -o $@ ! $(top_srcdir)/CBM-PI/CBM.pm: CBM.i swig -c++ $(INCLUDES) -shadow -Wall -perl $< ! CBM.o: $(top_srcdir)/CBM-PI/CBM.pm $(CXX) $(INCLUDES) -c $(top_srcdir)/CBM-PI/CBM_wrap.cxx `$(PERL) -MExtUtils::Embed -e ccopts` *************** *** 23,25 **** clean-local: ! rm -rf *.pm *.i~ *.cxx *.so *.o *.cpp~ *.h~ Makefile~ \ No newline at end of file --- 23,25 ---- clean-local: ! cd $(top_srcdir)/CBM-PI && rm -rf *.pm *.i~ *.cxx *.so *.o *.cpp~ *.h~ Makefile~ \ No newline at end of file |