diff options
| 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 |
| commit | f7ded3958a7f3bea16e2c8be55f159f34a45ca61 (patch) | |
| tree | 8190afb3c0ed8de0e0ea51a8178eea058a4b0179 | |
Initial Commit
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | LICENSE | 23 | ||||
| -rw-r--r-- | README.md | 0 | ||||
| -rw-r--r-- | src/Makefile | 26 | ||||
| -rw-r--r-- | src/main.c | 7 |
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 @@ | |||
| 1 | main | ||
| 2 | a.out | ||
| 3 | bin/ \ No newline at end of file | ||
| @@ -0,0 +1,23 @@ | |||
| 1 | MIT No Attribution | ||
| 2 | |||
| 3 | Copyright 2024 @syxhe | ||
| 4 | |||
| 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this | ||
| 6 | software and associated documentation files (the "Software"), to deal in the Software | ||
| 7 | without restriction, including without limitation the rights to use, copy, modify, | ||
| 8 | merge, publish, distribute, sublicense, and/or sell copies of the Software, and to | ||
| 9 | permit persons to whom the Software is furnished to do so. | ||
| 10 | |||
| 11 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, | ||
| 12 | INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A | ||
| 13 | PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
| 14 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
| 15 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
| 16 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
| 17 | |||
| 18 | |||
| 19 | |||
| 20 | AGAIN, THE CREATOR OF THE SOFTWARE IS IN NO WAY RESPOSIBLE FOR THE ACTIONS OF THOSE WHOM USE | ||
| 21 | IT, NOR ARE THEY RESPONSIBLE FOR ANY DAMMAGE TO SYSTEMS THAT MAY ARISE FROM THE USE | ||
| 22 | OF THIS SOFTWARE. PERSONS USING THIS SOFTWARE UNDERSTAND THAT, BY RUNNING THIS SOFTWARE, | ||
| 23 | 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 --- /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 @@ | |||
| 1 | CC = gcc | ||
| 2 | SHELL = /usr/bin/bash | ||
| 3 | |||
| 4 | DEBUG_CFLAGS := -fanalyzer -Wanalyzer-too-complex -ggdb -g3 -Og | ||
| 5 | RELEASE_CFLAGS := -O3 -fipa-pta -fipa-cp -fuse-linker-plugin -flto=auto | ||
| 6 | CFLAGS = -Wall -Wextra -Wpedantic -pedantic-errors $(DEBUG_CFLAGS) | ||
| 7 | |||
| 8 | DEBUG_LDLIBS := | ||
| 9 | RELEASE_LDLIBS := | ||
| 10 | LDLIBS += $(DEBUG_LDLIBS) | ||
| 11 | |||
| 12 | DEBUG_LDFLAGS := | ||
| 13 | RELEASE_LDFLAGS := -fuse-linker-plugin -flto=auto | ||
| 14 | LDFLAGS += $(DEBUG_LDFLAGS) | ||
| 15 | |||
| 16 | |||
| 17 | BINARIES := main | ||
| 18 | |||
| 19 | .PHONY: all clean | ||
| 20 | |||
| 21 | all: main | ||
| 22 | |||
| 23 | main: main.c | ||
| 24 | |||
| 25 | clean: | ||
| 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 | |||
| 3 | int 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 | ||
