https://github.com/jwerle/clib-build
Small bash script for building clib dependencies
https://github.com/jwerle/clib-build
Last synced: about 2 months ago
JSON representation
Small bash script for building clib dependencies
- Host: GitHub
- URL: https://github.com/jwerle/clib-build
- Owner: jwerle
- Created: 2013-12-15T18:55:01.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-16T11:53:15.000Z (about 12 years ago)
- Last Synced: 2025-12-30T17:35:31.687Z (6 months ago)
- Language: Shell
- Size: 125 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cilb-build
=====
Small bash script for building [clib](https://github.com/clibs/clib)
dependencies
## install
***clib***
```sh
$ [sudo] clib install jwerle/clib-build
```
***git***
```sh
$ git clone https://github.com/jwerle/clib-build.git
$ cd clib-build
$ make test
$ make install
```
## synopsis
Executes make on each dep assuming each will build a static and/or
shared library for linking
## usage
Build depdendencies
```sh
$ clib-build -d /path/to/package
build: 'somedep'
lib: '/deps/foo/libfoo.a' (static)
lib: 'test/deps/foo/libfoo.so' (shared)
```
Test depdendencies
```sh
$ clib-build -t -d test
build: 'foo'
lib: 'test/deps/foo/libfoo.a' (static)
lib: 'test/deps/foo/libfoo.so' (shared)
test 'foo'
```
## license
MIT