https://github.com/cppfw/prorab
:construction_worker: non-recursive GNU make-based build framework
https://github.com/cppfw/prorab
build-system make makefile
Last synced: 4 months ago
JSON representation
:construction_worker: non-recursive GNU make-based build framework
- Host: GitHub
- URL: https://github.com/cppfw/prorab
- Owner: cppfw
- License: mit
- Created: 2015-09-25T20:15:02.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2025-05-04T17:14:23.000Z (6 months ago)
- Last Synced: 2025-05-04T18:23:39.103Z (6 months ago)
- Topics: build-system, make, makefile
- Language: Makefile
- Homepage:
- Size: 689 KB
- Stars: 27
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.adoc
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
:name: prorab
= {name}
|====
| link:https://github.com/cppfw/{name}/releases[image:https://img.shields.io/github/tag/cppfw/{name}.svg[releases]] | link:https://github.com/cppfw/{name}/actions[image:https://github.com/cppfw/{name}/workflows/ci/badge.svg[ci status]]
|====
Non-recursive **GNU make**-based build framework.
Provides rules for C/C++ library/application. Allows hierarchical makefile inclusion.
== example
The `makefile` for building a C++ application with `prorab` is as simple as follows:
```makefile
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))
```
== installation and documentation
See **link:wiki/HomePage.adoc[WiKi]**