Browse Source

updated to reflect modern file tree

Iver 1 month ago
parent
commit
aa350fe845
8 changed files with 20 additions and 8 deletions
  1. 0 6
      LICENSE.md
  2. 1 1
      Makefile
  3. 1 0
      builds/.txt
  4. 0 1
      readme.md
  5. 1 0
      src/dependencies/.txt
  6. 7 0
      src/headers/NAMEHERE.h
  7. 5 0
      src/headers/NH_functions.h
  8. 5 0
      src/headers/NH_types.h

+ 0 - 6
LICENSE.md

@@ -1,6 +0,0 @@
-Copyright (c) 2025 Iver Martinson
-
-This software is NOT LICENSED for use, distribution, or modification.
-Do not use, distribute, or modify this code without explicit permission from the author.
-
-The author may release a license in the future. Until then, all rights are reserved.

+ 1 - 1
Makefile

@@ -7,7 +7,7 @@ main.bin: NAMEHERE.so LIBNAMEHERE.so
 	$(COMPILER) $(FLAGS_ALL) src/launch\ program/main.c -o builds/main.bin $(FLAGS_EXAMPLE) 
 	$(COMPILER) $(FLAGS_ALL) src/launch\ program/main.c -o builds/main.bin $(FLAGS_EXAMPLE) 
 
 
 NAMEHERE.so:
 NAMEHERE.so:
-	$(COMPILER) $(FLAGS_ALL) src/main/main.c -o builds/librasteriver.so $(FLAGS_LIB) 
+	$(COMPILER) $(FLAGS_ALL) src/main/main.c -o builds/NAMEHERE.so $(FLAGS_LIB) 
 
 
 LIBNAMEHERE.so:
 LIBNAMEHERE.so:
 	cp src/libraries/libLIBNAMEHERE.so builds/
 	cp src/libraries/libLIBNAMEHERE.so builds/

+ 1 - 0
builds/.txt

@@ -0,0 +1 @@
+this is a file so that git commits this folder

+ 0 - 1
readme.md

@@ -1,3 +1,2 @@
 # NAMEHERE
 # NAMEHERE
 
 
-SUBHEADING HERE

+ 1 - 0
src/dependencies/.txt

@@ -0,0 +1 @@
+this is a file so that git commits this folder

+ 7 - 0
src/headers/NAMEHERE.h

@@ -0,0 +1,7 @@
+#ifndef NAMEHERE_H
+#define NAMEHERE_H
+
+#include "NH_types.h"
+#include "NH_functions.h"
+
+#endif

+ 5 - 0
src/headers/NH_functions.h

@@ -0,0 +1,5 @@
+#ifndef NH_FUNCTIONS_H
+#define NH_FUNCTIONS_H
+
+
+#endif

+ 5 - 0
src/headers/NH_types.h

@@ -0,0 +1,5 @@
+#ifndef NH_TYPES_H
+#define NH_TYPES_H
+
+
+#endif