Skip to content

Commit

Permalink
yoinked forth stuff into separate place
Browse files Browse the repository at this point in the history
  • Loading branch information
RealNeGate committed Jan 22, 2024
1 parent c31c422 commit fd23048
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7,888 deletions.
4 changes: 0 additions & 4 deletions build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ local options = {
driver = false,
shared = false,
test = false,
forth = false,
lld = false,
gcc = false,
asan = false,
Expand Down Expand Up @@ -56,8 +55,6 @@ local modules = {
-- executables:
-- Cuik command line
driver = { is_exe=true, srcs={"main/main_driver.c"}, deps={"common", "cuik", "tb"} },
-- forth
forth = { is_exe=true, srcs={"forth/forth.c"}, deps={"common", "tb"}, flags="-I libCuik/include" },
-- TB unittests
tests = { is_exe=true, srcs={"tb/tests/cg_test.c"}, deps={"tb", "common"} },

Expand Down Expand Up @@ -284,7 +281,6 @@ local obj_names = table.concat(objs, " ")
local exe_name = "cuik"
if options.tb then exe_name = "tb" end
if options.tests then exe_name = "tests" end
if options.forth then exe_name = "forth" end

-- placing executables into bin/
exe_name = "bin/"..exe_name
Expand Down
Loading

0 comments on commit fd23048

Please sign in to comment.