summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/stdlib
diff options
context:
space:
mode:
authorthing1 <thing1@seacrossedlovers.xyz>2024-10-27 09:16:27 +0000
committerthing1 <thing1@seacrossedlovers.xyz>2024-10-27 09:16:27 +0000
commit6d0b638d691270d7c65899ed860d0330938e7a07 (patch)
tree2ffed0fb53ca82f760376847d95075a6285acf31 /comp/lucas-standen-NEA/code2/stdlib
parentb8c4af0771371e0c91a57343892e991254c4bf0b (diff)
did some writeup changes and finished electronics stuff
Diffstat (limited to 'comp/lucas-standen-NEA/code2/stdlib')
-rw-r--r--comp/lucas-standen-NEA/code2/stdlib/Makefile2
-rw-r--r--comp/lucas-standen-NEA/code2/stdlib/String/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/comp/lucas-standen-NEA/code2/stdlib/Makefile b/comp/lucas-standen-NEA/code2/stdlib/Makefile
index ff46d14..9d4bfd6 100644
--- a/comp/lucas-standen-NEA/code2/stdlib/Makefile
+++ b/comp/lucas-standen-NEA/code2/stdlib/Makefile
@@ -1,5 +1,5 @@
CC=cc
-CFLAGS=-O0 -ggdb
+CFLAGS=-O3
stdlib:
cd String && make
diff --git a/comp/lucas-standen-NEA/code2/stdlib/String/Makefile b/comp/lucas-standen-NEA/code2/stdlib/String/Makefile
index e61ca1d..053ab59 100644
--- a/comp/lucas-standen-NEA/code2/stdlib/String/Makefile
+++ b/comp/lucas-standen-NEA/code2/stdlib/String/Makefile
@@ -1,5 +1,5 @@
CC=cc
-CFLAGS=-ggdb
+CFLAGS=-O3
all: String.c
${CC} String.c -c -o String.o ${CFLAGS}