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: about 1 month 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 (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-01-13T11:46:10.000Z (4 months ago)
- Last Synced: 2025-01-28T12:42:32.548Z (3 months ago)
- Topics: build-system, make, makefile
- Language: Makefile
- Homepage:
- Size: 689 KB
- Stars: 26
- Watchers: 3
- 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.mkthis_name := myapp # this will be the executable file name
this_cxxflags += -Wall
this_cxxflags += -DDEBUGthis_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]**