From 438edf45c27da9aa2503a5bcf50f34475c8bc63d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 3 Apr 2024 03:08:40 -0400 Subject: [PATCH] Hook things up so the compiler can run better without installing --- .gitignore | 4 ++-- include/tomo | 1 + tomo.c | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 120000 include/tomo diff --git a/.gitignore b/.gitignore index 7748ae3..664be7b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ *.tm.c *.tm.h *.tm.o -tomo -tags +/tomo +/tags diff --git a/include/tomo b/include/tomo new file mode 120000 index 0000000..ee3780d --- /dev/null +++ b/include/tomo @@ -0,0 +1 @@ +../builtins \ No newline at end of file diff --git a/tomo.c b/tomo.c index 4d900ae..37c6d4e 100644 --- a/tomo.c +++ b/tomo.c @@ -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"))