]> git.llucax.com Git - software/makeit.git/commit
Initial import of the all mighty make based build system
authorLeandro Lucarella <llucarella@integratech.com.ar>
Thu, 17 Sep 2009 13:30:56 +0000 (10:30 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 18 Sep 2009 03:00:22 +0000 (00:00 -0300)
commita4419536621943012477a48fc1fc5b1c730a2834
tree9e108623f96e8f6c6a5edaab33e054e3f48b8e4b
Initial import of the all mighty make based build system

This is a test/example of a nice make based build system that support
automatic dependencies, variants, separated build directory, automatic
generation of pre-compiled header, subproject embedding and some other
goodies.

The only important file is Lib.mak, all the rest is just an usage example
and/or test.
25 files changed:
.gitignore [new file with mode: 0644]
Build.mak [new file with mode: 0644]
Config.mak [new file with mode: 0644]
Lib.mak [new file with mode: 0644]
Makefile [new file with mode: 0644]
README [new file with mode: 0644]
Toplevel.mak [new file with mode: 0644]
lib1/Build.mak [new file with mode: 0644]
lib1/Makefile [new file with mode: 0644]
lib1/lib1.c [new file with mode: 0644]
lib1/lib1.h [new file with mode: 0644]
lib2/Build.mak [new file with mode: 0644]
lib2/Makefile [new file with mode: 0644]
lib2/lib2.cpp [new file with mode: 0644]
lib2/lib2.h [new file with mode: 0644]
prog/Build.mak [new file with mode: 0644]
prog/Makefile [new file with mode: 0644]
prog/main.cpp [new file with mode: 0644]
subproj/Build.mak [new file with mode: 0644]
subproj/Config.mak [new file with mode: 0644]
subproj/Lib.mak [new symlink]
subproj/Makefile [new file with mode: 0644]
subproj/Toplevel.mak [new file with mode: 0644]
subproj/subproj.c [new file with mode: 0644]
subproj/subproj.h [new file with mode: 0644]