Hook things up so the compiler can run better without installing

This commit is contained in:
Bruce Hill 2024-04-03 03:08:40 -04:00
parent 5fc433e714
commit 438edf45c2
3 changed files with 4 additions and 3 deletions

4
.gitignore vendored
View File

@ -3,5 +3,5 @@
*.tm.c
*.tm.h
*.tm.o
tomo
tags
/tomo
/tags

1
include/tomo Symbolic link
View File

@ -0,0 +1 @@
../builtins

2
tomo.c
View File

@ -83,7 +83,7 @@ int main(int argc, char *argv[])
cflags = getenv("CFLAGS");
if (!cflags)
cflags = heap_strf("%s %s -ggdb -I. -D_DEFAULT_SOURCE", cconfig, optimization);
cflags = heap_strf("%s %s -ggdb -I./include -D_DEFAULT_SOURCE", cconfig, optimization);
ldlibs = "-lgc -lcord -lm -L. -ltomo";
if (getenv("LDLIBS"))