[hipl-commit] [trunk] Rev 4180: Compile performance code directly into the core if enabled.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Thu, 8 Apr 2010 16:12:14 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 08/04/2010 at 16:12:14
Revision: 4180
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Compile performance code directly into the core if enabled.
  
  Creating a separate library for just one file is overkill.

Modified:
  M  Makefile.am

=== modified file 'Makefile.am'
--- Makefile.am 2010-04-07 18:34:03 +0000
+++ Makefile.am 2010-04-08 13:11:27 +0000
@@ -251,7 +251,7 @@
                                  lib/core/transform.c
 
 if HIP_PERFORMANCE
-lib_core_libhipcore_la_LIBADD = lib/performance/libperformance.la
+lib_core_libhipcore_la_SOURCES += lib/performance/performance.c
 endif
 
 if HIP_PRIVSEP
@@ -298,8 +298,6 @@
 lib_tool_libhiptool_la_SOURCES += lib/tool/xfrmapi.c
 endif # HIPPFKEY
 
-lib_performance_libperformance_la_SOURCES = lib/performance/performance.c
-
 lib_opphip_libopphip_la_SOURCES  = lib/opphip/wrap.c \
                                    lib/opphip/wrap_db.c

Other related posts:

  • » [hipl-commit] [trunk] Rev 4180: Compile performance code directly into the core if enabled. - Diego Biurrun