Fast and efficient drawing static library.
Go to file
Thomas Touhey 0c6518491f Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
debian Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
include Renamed project in headers 2016-04-22 07:06:40 +02:00
man/man3 Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
src Adapted syscall to SH4 2016-04-25 15:08:15 +02:00
.draft.gitlab-ci.yml Disabled tests while runner isn't configured 2016-04-22 22:20:59 +02:00
.gitignore Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
CHANGELOG.md Added changelog and contributing guide 2016-04-26 12:31:45 +02:00
CONTRIBUTING.md Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
LICENSE.md Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
Makefile Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
Makefile.cfg Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
README.md Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00

README.md

libmonochrome - The MonochromeLib static implementation

The monochrome library was made by PierrotLL. This project is only a reorganization of the files to make a static library, instead of having to include the source files in the projects each time.

The original docs have been converted to markdown and are available in the libmonochrome wiki.

Building

Building the library is achieved by the Makefile :

  • make: make the library ;
  • make clean: clean the object files ;
  • make fclean: clean the object files and the final library ;
  • make re: cleans the object files and the final library, then makes the project.

Using

Once installed, when linking a project, you will need to link with the library by adding the -lmonochrome flag.

If you don't want to install the library :

  • when compiling, you should add -I path/to/this/dir/include.
  • when linking, you should add -L path/to/this/dir.