aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAge
* Modified includesAlexander M Pickering2021-12-17
|
* Fixed empty loop causeing infinite loopAlexander Pickering2019-11-21
| | | | | | If a loop was defined in the template, but no loop was defined in the varlist, render() would infinite loop while trying to execute. Fixs that.
* Squashed warningsAlexander Pickering2019-09-27
| | | | | Added the -Wextra flag to the makefile for debug builds, and squashed all the warning that came up.
* Fix typos in headersAlexander Pickering2019-09-04
|
* Added break statement to templatesAlexander Pickering2019-08-28
| | | | | Added a break statement that can break out of loops, also added some tests to test the functionality of the same.
* Spelling correctionsAlexander Pickering2019-01-15
| | | | Corrected a bunch of spelling mistakes in the readme and the Makefile
* Make tokenize return double-linked listAlexander Pickering2018-12-15
| | | | | Tokenize now has a doubly linked list of toekns, for additionall help parsing break/continue instructions.
* Started refactoring codeAlexander Pickering2018-10-25
| | | | | | Added a src/ and build/ directory Added a include/ directory Included file is smaller
* Fixed makefileAlexander Pickering2018-10-24
|
* Added DEBUG=true flag to makefileAlexander Pickering2018-10-13
| | | | | | | When compileing with DEBUG=true, gcc will build with no optimizations and with debugging symbols. When compileing without DEBUG=true, gcc with build with -O3 and no debugging symbols.
* Allows make install to work after installing onceAlex2018-01-18
|
* More changes for unix file pathsAlexander Pickering2018-01-18
| | | | Changed test file path from windows style to unix style.
* Removed object file & changed make fileAlexander Pickering2018-01-18
| | | | | | removed an object file that somehow made it into the repo Also chagned makefile to use unix style paths instead of windows style paths.
* Started writing unit testsAlexander Pickering2018-01-05
| | | | | Added some tests for good input. Also fixed a bug where an empty loop would crash.
* Made ctemplates more like a libraryAlexander Pickering2017-12-28
| | | | | Combined ctemplates.h and ctemplates_i.h into a single file, also included all header files as things to be installed in a library
* Renamed filesAlexander Pickering2017-12-22
Renamed everything that needed to be rename from libctemplate to libctemplates