aboutsummaryrefslogtreecommitdiff
path: root/minilibx/README
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-04 11:09:50 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-04 11:11:24 +0100
commit9bbc949c432f6a981fdac5aec4b36edd2f4dcdba (patch)
treeb5cf3c8591267d3bc1f9fca800c1a048bd5b6004 /minilibx/README
parentdab9efb7b745fe884fb72017591dce95978c19c4 (diff)
downloadfractol-9bbc949c432f6a981fdac5aec4b36edd2f4dcdba.tar.gz
fractol-9bbc949c432f6a981fdac5aec4b36edd2f4dcdba.tar.bz2
fractol-9bbc949c432f6a981fdac5aec4b36edd2f4dcdba.zip
Linux branch with minilibx_linux(https://framagit.org/ggenois/minilibx_linux)linux
Diffstat (limited to 'minilibx/README')
-rwxr-xr-xminilibx/README42
1 files changed, 42 insertions, 0 deletions
diff --git a/minilibx/README b/minilibx/README
new file mode 100755
index 0000000..7adcb2f
--- /dev/null
+++ b/minilibx/README
@@ -0,0 +1,42 @@
+
+This is the MinilibX, a simple X-Window (X11R6) programming API
+in C, designed for students, suitable for X-beginners.
+
+
+Contents
+
+ - source code in C to create the mlx library
+ - man pages (in man/ directory)
+ - a test program (in test/ directory) is built
+ with the library
+ - a public include file mlx.h
+ - a tiny configure script to generate an appropriate Makefile.gen
+
+
+Requirements
+
+ - MinilibX only support TrueColor visual type (8,15,16,24 or 32 bits depth)
+ - gcc
+ - X11 include files
+ - XShm extension must be present
+
+
+Compile MinilibX
+
+ - run ./configure or make
+ both will make a few tests, create Makefile.gen
+ and then automatically run make on this generated Makefile.gen .
+ libmlx.a and libmlx_$(HOSTTYPE).a are created.
+ test/mlx-test binary is also created.
+
+
+Install MinilibX
+
+ - no installation script is provided. You may want to install
+ - libmlx.a and/or libmlx_$(HOSTTYPE).a in /usr/X11/lib or /usr/local/lib
+ - mlx.h in /usr/X11/include or /usr/local/include
+ - man/man3/mlx*.1 in /usr/X11/man/man3 or /usr/local/man/man3
+ - or make DESTDIR=/usr/local install
+
+
+ Olivier CROUZET - 2014-01-06 -