]> git.llucax.com Git - software/makeit.git/commitdiff
Rename test project to makeit
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 13:25:32 +0000 (10:25 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 13:25:32 +0000 (10:25 -0300)
There is a already GNU Make fork called remake.

Build.mak
lib1/Build.mak
lib2/Build.mak
lib2/lib2.cpp
prog/main.cpp

index 6c4469763f5b423aea249a22248259ab868be82e..72af2a000c234cfeab0bc7e04e52b6392cfbbd46 100644 (file)
--- a/Build.mak
+++ b/Build.mak
@@ -1,9 +1,9 @@
 
 # Create the include directory symlink
-setup_include_dir__ := $(call symlink_include_dir,remake)
+setup_include_dir__ := $(call symlink_include_dir,makeit)
 
 # General rule to install headers of this project
-$I/include/remake/%.h: $T/%.h
+$I/include/makeit/%.h: $T/%.h
        $(call install_file)
 
 # Include sub-directories makefiles
index bf29c8f408e2bbf3a2c8313a2e452434ae6733be..298a88ecb1fd92a5183fc8a3ef3f0f2d6022d678 100644 (file)
@@ -13,5 +13,5 @@ install += $I/lib/liblib1.so
 
 # Install the library's headers
 # XXX: we can't use += here, call will be resolved lazily if we do
-install := $(install) $(call find_headers,h,$I/include/remake/lib1)
+install := $(install) $(call find_headers,h,$I/include/makeit/lib1)
 
index 3ef80b9f8027d216bbded815456940cf66d26ef5..ba7d5104691a174c855069289ebc72a306ba3912 100644 (file)
@@ -12,5 +12,5 @@ install += $I/lib/liblib2.so
 
 # Install the library's headers
 # XXX: we can't use += here, call will be resolved lazily if we do
-install := $(install) $(call find_headers,h,$I/include/remake/lib2)
+install := $(install) $(call find_headers,h,$I/include/makeit/lib2)
 
index 7555392fb9a55e319b5f4d17718cbece72e92796..490f31267133bdb63569aa1f69d94db75e294ebe 100644 (file)
@@ -2,7 +2,7 @@
 #include "lib2.h"
 
 #include <otherproj/otherproj.h>
-#include <remake/lib1/lib1.h>
+#include <makeit/lib1/lib1.h>
 
 #include <stdio.h>
 
index 19ec21fc9d202390e53fadf2c3954405879c725e..c6128f8e624b3acee5de9741028de013516693f3 100644 (file)
@@ -1,6 +1,6 @@
 
-#include <remake/lib1/lib1.h>
-#include <remake/lib2/lib2.h>
+#include <makeit/lib1/lib1.h>
+#include <makeit/lib2/lib2.h>
 
 #include <iostream>