From 9330498353dfee010b901ee046937a29f7ffee44 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Thu, 22 Jan 2026 11:38:58 +0100 Subject: [PATCH] feat: initial commit --- .gitignore | 1 + LICENSE.md | 21 +++++++++++++++++++++ Makefile | 6 ++++++ README.md | 3 +++ src/main.c | 6 ++++++ 5 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.md create mode 100644 Makefile create mode 100644 README.md create mode 100644 src/main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..378eac2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5639c65 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +Copyright (c) 2026 Pihkaal +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ed8791b --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +build/cmeta: src/main.c + mkdir -p build + gcc -Wall -Wextra -pedantic -o build/cmeta src/main.c + +run: build/cmeta + build/cmeta diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d98392 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# cmeta + +Meta Programming for C diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..e3efffe --- /dev/null +++ b/src/main.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Ok\n"); + return 0; +}