From 32638523f4edd4ad4edc2e8224e34747879f2f54 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sun, 2 Mar 2025 14:29:26 +0200 Subject: [PATCH] Fix libtest C path --- Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 937884b..ae52c85 100644 --- a/Makefile +++ b/Makefile @@ -14,12 +14,8 @@ chibi: -shared gauche: - ${CC} -Werror -g3 -o retropikzel/pffi/pffi-gauche.so \ - src/pffi-gauche.c \ - -fPIC \ - -lffi \ - -shared \ - -I./include + #${CC} -Werror -g3 -o retropikzel/pffi/pffi-gauche.so \ src/pffi-gauche.c \ -fPIC \ -lffi \ -shared \ -I./include + gauche-package jenkinsfile: gosh -r7 -I ./snow build.scm @@ -27,7 +23,7 @@ jenkinsfile: libtest.o: src/libtest.c ${CC} -o libtest.o -fPIC -c src/libtest.c -I./include -libtest.so: libtest.c +libtest.so: src/libtest.c ${CC} -o libtest.so -shared -fPIC src/libtest.c -I./include libtest.a: libtest.o src/libtest.c