The makefile for building a C++ application with prorab is as simple as follows:
include prorab.mk
this_name := myapp # this will be the executable file name
this_cxxflags += -Wall
this_cxxflags += -DDEBUG
this_cflags += -Wall
this_ldlibs += -lpthread
this_srcs += main.cpp myapp.cpp legacy.c
$(eval $(prorab-build-app))See WiKi