summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-12-21 02:03:28 -0600
committer@syxhe <https://t.me/syxhe>2024-12-21 02:03:28 -0600
commitf7ded3958a7f3bea16e2c8be55f159f34a45ca61 (patch)
tree8190afb3c0ed8de0e0ea51a8178eea058a4b0179
Initial Commit
-rw-r--r--.gitignore3
-rw-r--r--LICENSE23
-rw-r--r--README.md0
-rw-r--r--src/Makefile26
-rw-r--r--src/main.c7
5 files changed, 59 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2964c9d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
1main
2a.out
3bin/ \ 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 @@
1MIT No Attribution
2
3Copyright 2024 @syxhe
4
5Permission is hereby granted, free of charge, to any person obtaining a copy of this
6software and associated documentation files (the "Software"), to deal in the Software
7without restriction, including without limitation the rights to use, copy, modify,
8merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
9permit persons to whom the Software is furnished to do so.
10
11THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
12INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
13PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
14HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
15OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
16SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17
18
19
20AGAIN, THE CREATOR OF THE SOFTWARE IS IN NO WAY RESPOSIBLE FOR THE ACTIONS OF THOSE WHOM USE
21IT, NOR ARE THEY RESPONSIBLE FOR ANY DAMMAGE TO SYSTEMS THAT MAY ARISE FROM THE USE
22OF THIS SOFTWARE. PERSONS USING THIS SOFTWARE UNDERSTAND THAT, BY RUNNING THIS SOFTWARE,
23THEY 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
--- /dev/null
+++ b/README.md
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..f2f4bf7
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,26 @@
1CC = gcc
2SHELL = /usr/bin/bash
3
4DEBUG_CFLAGS := -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -Og
5RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto
6CFLAGS = -Wall -Wextra -Wpedantic -pedantic-errors $(DEBUG_CFLAGS)
7
8DEBUG_LDLIBS :=
9RELEASE_LDLIBS :=
10LDLIBS += $(DEBUG_LDLIBS)
11
12DEBUG_LDFLAGS :=
13RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto
14LDFLAGS += $(DEBUG_LDFLAGS)
15
16
17BINARIES := main
18
19.PHONY: all clean
20
21all: main
22
23main: main.c
24
25clean:
26 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 @@
1#include <stdio.h>
2
3int main() {
4 printf("We do a little trolling it's called we do a little trolling\nGod help us all\n");
5
6 return 0;
7} \ No newline at end of file