]> git.llucax.com Git - software/makeit.git/commitdiff
Comment default rules
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 15:37:53 +0000 (12:37 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 15:37:53 +0000 (12:37 -0300)
Lib.mak

diff --git a/Lib.mak b/Lib.mak
index de147379884579646570b99856ab4e93403d2dfd..a2ec0dfb52cf9f8f9b8609869f0715fc35cec4e1 100644 (file)
--- a/Lib.mak
+++ b/Lib.mak
@@ -217,26 +217,33 @@ sinclude $(shell test -d $O && find $O -name '*.d')
 # Default rules
 ################
 
+# Compile C objects
 $O/%.o: $T/%.c $G/compile-c-flags
        $(call compile,c)
 
+# Compile C++ objects
 $O/%.o: $T/%.cpp $G/compile-cpp-flags
        $(call compile,cpp)
 
+# Link binary programs
 $B/%: $G/link-o-flags
        $(call link)
 
+# Link shared libraries
 $L/%.so: override CFLAGS += -fPIC
 $L/%.so: override CXXFLAGS += -fPIC
 $L/%.so: $G/link-o-flags
        $(call link,-shared)
 
+# Install binary programs
 $I/bin/%:
        $(call install_file,0755)
 
+# Install system binary programs
 $I/sbin/%:
        $(call install_file,0755)
 
+# Install libraries
 $I/lib/%:
        $(call install_file)