From f7ded3958a7f3bea16e2c8be55f159f34a45ca61 Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Sat, 21 Dec 2024 02:03:28 -0600 Subject: Initial Commit --- .gitignore | 3 +++ LICENSE | 23 +++++++++++++++++++++++ README.md | 0 src/Makefile | 26 ++++++++++++++++++++++++++ src/main.c | 7 +++++++ 5 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 src/Makefile create mode 100644 src/main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2964c9d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +main +a.out +bin/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..774d4f4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,23 @@ +MIT No Attribution + +Copyright 2024 @syxhe + +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. + +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. + + + +AGAIN, THE CREATOR OF THE SOFTWARE IS IN NO WAY RESPOSIBLE FOR THE ACTIONS OF THOSE WHOM USE +IT, NOR ARE THEY RESPONSIBLE FOR ANY DAMMAGE TO SYSTEMS THAT MAY ARISE FROM THE USE +OF THIS SOFTWARE. PERSONS USING THIS SOFTWARE UNDERSTAND THAT, BY RUNNING THIS SOFTWARE, +THEY ACCEPT FULL RESPONSIBILITY FOR ANY DAMAGE THEY MAY CAUSE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..f2f4bf7 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,26 @@ +CC = gcc +SHELL = /usr/bin/bash + +DEBUG_CFLAGS := -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -Og +RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto +CFLAGS = -Wall -Wextra -Wpedantic -pedantic-errors $(DEBUG_CFLAGS) + +DEBUG_LDLIBS := +RELEASE_LDLIBS := +LDLIBS += $(DEBUG_LDLIBS) + +DEBUG_LDFLAGS := +RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto +LDFLAGS += $(DEBUG_LDFLAGS) + + +BINARIES := main + +.PHONY: all clean + +all: main + +main: main.c + +clean: + rm -rvf $(BINARIES) \ No newline at end of file diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..f07684d --- /dev/null +++ b/src/main.c @@ -0,0 +1,7 @@ +#include + +int main() { + printf("We do a little trolling it's called we do a little trolling\nGod help us all\n"); + + return 0; +} \ No newline at end of file -- cgit v1.2.3