cake
/
libg1m
Archived
1
0
Fork 0
Dépôt historique de la libg1m.
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Thomas Touhey 2febe9ae2c Stupid errors. 2016-11-23 08:14:12 +01:00
doc Stupid errors. 2016-11-23 08:14:12 +01:00
include Manpages. 2016-11-23 08:12:06 +01:00
src Manpages. 2016-11-23 08:12:06 +01:00
.gitignore Initial commit 2016-10-30 20:18:15 +01:00
Makefile Solved the picture-related bug 2016-11-19 12:05:54 +01:00
Makefile.msg I love e-activities. No, I do. Really. 2016-11-02 01:46:08 +01:00
Makefile.vars Modified main handle MCS management, started adding G3P support 2016-11-23 06:10:45 +01:00
README.md Modified main handle MCS management, started adding G3P support 2016-11-23 06:10:45 +01:00
configure Initial commit 2016-10-30 20:18:15 +01:00

README.md

libg1m - Casio File Format manipulation

Introduction

All of the files created around CASIO calculators are declinations of one format, which I named by the name of one of them : G1M. These formats go from main memory saves to pictures and e-activities (documents).

This library aims to be able to parse and write in all of the available formats, and to centralize the documentation and work on them, in order to provide a simple interface for C programs, that can be adapted to provide other interfaces such as a Python one, and to hide the odd subtilities of this Patchwork As A Format.

Prerequisites

Side note : the library might work with older versions of these dependencies, I took these as a reference because these are the ones I work with.

Making-only dependencies

Name Version
make >= 4.0
gcc >= 4.9
binutils >= 2.25
asciidoc >= 8.6.9
gzip >= 1.6

Runtime dependencies

Name Version
zlib >= 1.2.8

Building

Just ./configure then make. To install, use make install.

To build and install only the lib, use all-lib then install-lib. To build and install only the docs, use all-doc and install-doc.

Other useful targets:

  • uninstall, uninstall-lib, uninstall-bin, uninstall-doc: will try to uninstall using the current configuration (experimental);
  • mostlyclean, clean, clean-doc, mostlyclean-lib, clean-lib: remove built files at different levels;
  • re, re-lib, re-doc: regenerate built files at different levels (clean and build) -- useful when configuration is changed.