]> git.llucax.com Git - software/makeit.git/commitdiff
Use symbolic names in Makefiles default goals
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 18:28:22 +0000 (15:28 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Thu, 24 Sep 2009 13:38:29 +0000 (10:38 -0300)
lib1/Makefile
lib2/Makefile
subproj/Config.mak

index fe105328953bfa7d8bb4a64c4dfc032e877298c1..67f18f8c849054acfe2eb9ff5072fd28da0ca3a1 100644 (file)
@@ -2,9 +2,9 @@
 # Top-level directory
 T := ..
 
+# Default goal for building this directory
+.DEFAULT_GOAL := lib1
+
 # Include the top-level build
 include $T/Toplevel.mak
 
-# Default goal for building this directory
-.DEFAULT_GOAL := $L/liblib1.so
-
index 99f8aad1335f81d2e24869aebcfacd829ea5ec87..0692b1304e084385af9176c982ad192d1f0334ab 100644 (file)
@@ -2,9 +2,9 @@
 # Top-level directory
 T := ..
 
+# Default goal for building this directory
+.DEFAULT_GOAL := lib2
+
 # Include the top-level build
 include $T/Toplevel.mak
 
-# Default goal for building this directory
-.DEFAULT_GOAL := $L/liblib2.so
-
index 61e39009fc0504b1b3560d78f341a551d737b8af..dc4e4b4703afa4641da0c717338cc794714c53da 100644 (file)
@@ -2,9 +2,9 @@
 # Use the container project top-level directory as ours
 T := ..
 
-# Include the "parent" project configuration
-sinclude $T/Config.mak
-
 # Define the default goal when doing make in this directory
 .DEFAULT_GOAL := otherproj
 
+# Include the "parent" project configuration
+sinclude $T/Config.mak
+