[pisa-src] r1490 - trunk/Makefile.am

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 02 Nov 2009 17:30:00 +0100

Author: biurrun
Date: Mon Nov  2 17:30:00 2009
New Revision: 1490

Log:
Declare a dependency on libpisa for all programs.
This is not strictly true, but it ensures that libpisa is built first.
Otherwise it should do no harm.

Modified:
   trunk/Makefile.am

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am   Mon Nov  2 17:12:34 2009        (r1489)
+++ trunk/Makefile.am   Mon Nov  2 17:30:00 2009        (r1490)
@@ -65,7 +65,9 @@
 
 SUBDIRS  = . community-operator pairing test
 
-pisacd/pisacd pisacd/pisacdconf pisasd/pisasd pisasd/pisasdconf: 
libpisa/libpisa.la
+# Make sure that libpisa is built first. The dependency is partially fake,
+# but should do no harm apart from potentially slowing down parallel builds.
+$(bin_PROGRAMS) $(sbin_PROGRAMS): libpisa/libpisa.la
 
 deb rpm:
        tools/packaging/create-package.sh $@

Other related posts:

  • » [pisa-src] r1490 - trunk/Makefile.am - Diego Biurrun