aboutsummaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2025-04-01Add `core` library to avoid having to explicitly import a bunch ofBruce Hill
common libraries
2025-04-01Clean up and improve patternsBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
module-based approach
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
2025-03-28Fix formatted textBruce Hill
2025-03-28Add custom -I and -L flags for macBruce Hill
2025-03-28Fix library install name for macBruce Hill
2025-03-28Fix for mac using -install_nameBruce Hill
2025-03-28Remove open source version stuffBruce Hill
2025-03-28Add conditional LDLIBS for openbsdBruce Hill
2025-03-28Warning flags tweakBruce Hill
2025-03-28Improve makefile for clang supportBruce Hill
2025-03-28Add LDFLAGSBruce Hill
2025-03-28Include /usr/local/{include,lib}Bruce Hill
2025-03-28Switch `echo -e` for `printf`Bruce Hill
2025-03-28Default C compiler to `cc`Bruce Hill
2025-03-28Remove shellBruce Hill
2025-03-28Remove dl lib requirementBruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
matching
2025-03-22Add some logic to check for a GCC version high enoughBruce Hill
2025-03-21By default, install to ~/.local/bin and warn if PREFIX is not on user'sBruce Hill
$PATH
2025-03-21Added autoinstaller for depsBruce Hill
2025-03-21Make examples quieterBruce Hill
2025-03-21Update rule for making tagsBruce Hill
2025-03-21Move test results to test/results/*.tm.testresultBruce Hill
2025-03-21Move pandoc stuff into docs/Bruce Hill
2025-03-21Move manpage into docsBruce Hill
2025-03-21Move stdlib into src/Bruce Hill
2025-03-21Move files into src/ and build into build/Bruce Hill
2025-03-21Fix issue with constant initializers for metamethodsBruce Hill
2025-03-21Update makefile for compatibilityBruce Hill
2025-03-18Pluralize pthreadsBruce Hill
2025-03-18Update makefile to build executablesBruce Hill
2025-03-17FIx colorfulBruce Hill
2025-03-17Add pthread exampleBruce Hill
2025-03-17Move to using a .build/ folder for generated files instead of foo.tm.cBruce Hill
in the same folder
2025-03-17Big overhaul:Bruce Hill
- Clean up environment code using type strings instead of manually defining types - Add Commands module - Move Shell lang into an example module that uses Commands module - Fix some bugs with chained library dependencies
2025-03-07Set locale when running testsBruce Hill
2025-03-05Overhaul of constructors, making it more consistent and correct. AlsoBruce Hill
changed T(), T, T_t, T_s type names to T(), T$$info, T$$type, T$$struct for unambiguity
2025-02-21Deprecate autoformatterBruce Hill
2025-02-21Fix makefile optimization parameterBruce Hill
2025-02-21Add learnxiny to 'examples' makefile ruleBruce Hill
2025-02-13Deprecate Range datatype in favor of using iterator methodsBruce Hill
2025-01-02Use `holding` blocks for mutexed data instead of lambdasBruce Hill
2025-01-02Replace threads with generic mutexed datastructures.Bruce Hill
2024-12-30Compile with thread supportBruce Hill
2024-11-29Change how types handle metamethodsBruce Hill
2024-11-24Clean up some more null->none renames and fix the documentation. AlsoBruce Hill
change the literal syntax to `NONE:T` instead of `!T`
2024-11-17Rename datetime -> momentBruce Hill
2024-11-03Add RNGs to the languageBruce Hill