Fast and efficient drawing static library.
Go to file
Thomas Touhey 6bc9574877 Final corrections 2016-05-23 01:43: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 Removed Debian packaging for now, modified build/install process 2016-05-22 23:13:11 +02:00
CHANGELOG.md Added changelog and contributing guide 2016-04-26 12:31:45 +02:00
CONTRIBUTING.md Building is done in a correct way now :) 2016-05-22 23:21:53 +02:00
LICENSE.md Made manpages and started implementing packaging for Debian 2016-05-09 02:16:52 +02:00
Makefile Corrected install target 2016-05-23 00:32:30 +02:00
Makefile.vars Corrected some headers 2016-05-22 23:43:10 +02:00
README.md Final corrections 2016-05-23 01:43:52 +02:00
configure Final corrections 2016-05-23 01:43: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.

Pre-requisites

Name Version
libfx =1.0

Building

First, create the Makefile configuration with the ./configure command. Defaults settings should be enough, but if you want to change the installation directories, see ./configure --help.

To build the library, simply make.

To install the built library, use make install (it will use the configuration generated by ./configure).

If you want to contribute, these Makefile targets might help you :

  • 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 using this library, you will need to link the library and its pre-requisites by adding the following flags :

-lfx -lmonochrome