Concerto icon indicating copy to clipboard operation
Concerto copied to clipboard

A non-recursive Make system which supports GCC, CLANG, MS VC++, JAVAC, DPKG, DOXYGEN and many more targets.

Results 13 Concerto issues
Sort by recently updated
recently updated
newest added

https://www.gnu.org/software/make/manual/make.html#Standard-Targets

prebuilt targets are not working

This could just mean that any *.mak in the folder is pulled in similar to a component (which is defined during the finale) * components/pre-module-plugins/*.mak * components/post-module-plugins/*.mak

Allow for expected negative compile cases for enforcing programming models. For example a C++ object may delete a specific method or constructor. A unit test would try to use this...

TARGET_BUILD:=valgrind (or related to each tool type, pick the best)

include $(PRELUDE) TARGET := MyJava TARGETTYPE := jar ENTRY := com.somepath.Class JSOURCES = $(call all-java-under,com) SHARED_LIBS := foo include $(FINALE) The "SHARED_LIBS" would be a list of JNI libraries that...

HOST_COMPILER_VERSION should be able to be set per module, and would indicate required compiler version. Unset by default. Example: HOST_COMPILER=GCC HOST_COMPILER_VERSION=4.8 or HOST_COMPILER=CLANG HOST_COMPILER_VERSION=3.5 HOST_COMPILER_STD should be able to be...