aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-30 01:23:26 +0100
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2019-03-30 01:23:26 +0100
commit7faa7890ec6e899158962506ad17b75bb92ebb16 (patch)
tree03d552ba6bcb75ff0bb92d0fe084bb0bb08a226c
parentd04b07d33eefb6410550b6b98a6f1dbf61e4d3dd (diff)
downloadtermgl-7faa7890ec6e899158962506ad17b75bb92ebb16.tar.gz
Rename + Version change
Signed-off-by: Jonas Gunz <himself@jonasgunz.de>
-rw-r--r--Makefile6
-rw-r--r--Readme.md8
-rw-r--r--example/Makefile2
3 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index e1fa110..d44724c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,14 @@ CC = clang
CFLAGS = -Wall -g -std=c++11 -fPIC
DEBUGFLAGS = -Wall -g -std=c++11
LDFLAGS = -shared
-SONAME = engine
+SONAME = termgl
BUILDDIR = build
SOURCEDIR = src
OBJECTDIR = obj
TESTSOURCE = test
#VERSION
-VERSION = 0
-PATCHLEVEL = 4
+VERSION = 1
+PATCHLEVEL = 0
OUTPUT = lib$(SONAME).so.$(VERSION).$(PATCHLEVEL)
SRCS=$(wildcard $(SOURCEDIR)/*.cpp)
diff --git a/Readme.md b/Readme.md
index d76db3b..f178de3 100644
--- a/Readme.md
+++ b/Readme.md
@@ -2,13 +2,13 @@
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/9b19f9f7a8d241368f6ee640d824b293)](https://www.codacy.com/app/kompetenzbolzen/engine?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=kompetenzbolzen/engine&amp;utm_campaign=Badge_Grade)
[![CodeFactor](https://www.codefactor.io/repository/github/kompetenzbolzen/engine/badge/master)](https://www.codefactor.io/repository/github/kompetenzbolzen/engine/overview/master)
-# engine (the most creative name I could come up with)
+# TermGL
-engine is a library for displaying ASCII-graphics in a text console. For more information on how to use, consult the documentation (`make doc`) and look at the example programs in `example/`.
+TermGL is a library for displaying ASCII-graphics in a text console. For more information on how to use, consult the documentation (`make doc`) and look at the example programs in `example/`.
## Compiling the library
-engine should compile just fine with just the c++ standard librarys. The Makefile is set up for clang, but gcc should also work.
+TermGL should compile just fine with just the c++ standard librarys. The Makefile is set up for clang, but gcc should also work.
Required Packages:
clang
@@ -24,4 +24,4 @@ To build the documentation, install `doxygen` and run `make doc`.
Compile your program with linkerflags:
- -L/path/to/lib -lengine -lstdc++
+ -L/path/to/lib -ltermgL -lstdc++
diff --git a/example/Makefile b/example/Makefile
index c8eed4c..a06aa1d 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -4,7 +4,7 @@ LIBDIR = ../build/lib
INCDIR = ../build/inc
%: %.cpp
- $(CC) -I$(INCDIR) -L$(LIBDIR) $(CFLAGS) -lengine $< -o $@.out
+ $(CC) -I$(INCDIR) -L$(LIBDIR) $(CFLAGS) -ltermgl $< -o $@.out
LD_LIBRARY_PATH=$(LIBDIR) ./$@.out
.PHONY: clean