diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-10-29 13:16:25 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-10-29 13:16:25 +0200 |
| commit | 80d78c5589d42f81b04e671b28c103a2112458d1 (patch) | |
| tree | 81390d685648d25dd05dfa0092deb0587821cf5a /triscv | |
| parent | b7525c84619f7bc28bcd3c43aa119d1c6bc23b6d (diff) | |
| download | tri-80d78c5589d42f81b04e671b28c103a2112458d1.tar.gz tri-80d78c5589d42f81b04e671b28c103a2112458d1.zip | |
move common stuff to core
+ Might have to come up with a better name, but works for now
Diffstat (limited to 'triscv')
| -rw-r--r-- | triscv/Makefile | 2 | ||||
| -rw-r--r-- | triscv/scripts/makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/triscv/Makefile b/triscv/Makefile index adceb03..88ba7aa 100644 --- a/triscv/Makefile +++ b/triscv/Makefile @@ -22,7 +22,7 @@ setup: CLEANUP := build deps.mk triscv CLEANUP_CMD := -TRISCV_SOURCES := deps/utf9/utf9.c +TRISCV_SOURCES := ../utf9/utf9.c ../core/bits.c include src/source.mk diff --git a/triscv/scripts/makefile b/triscv/scripts/makefile index 50510f8..ff8b185 100644 --- a/triscv/scripts/makefile +++ b/triscv/scripts/makefile @@ -41,7 +41,7 @@ WARNFLAGS = -Wall -Wextra COMPILE_FLAGS = $(CFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(OBFLAGS) $(ASSERTFLAGS) \ $(DEBUGFLAGS) -INCLUDE_FLAGS = -I include -I ../core -I deps/utf9 +INCLUDE_FLAGS = -I include -I ../core -I ../utf9 # This makes sure .bss is loaded into the binary OBJCOPY_FLAGS ?= -Obinary -R .garbage \ |
