Fix libtest C path
This commit is contained in:
parent
a6f9de2e6b
commit
32638523f4
10
Makefile
10
Makefile
|
|
@ -14,12 +14,8 @@ chibi:
|
||||||
-shared
|
-shared
|
||||||
|
|
||||||
gauche:
|
gauche:
|
||||||
${CC} -Werror -g3 -o retropikzel/pffi/pffi-gauche.so \
|
#${CC} -Werror -g3 -o retropikzel/pffi/pffi-gauche.so \ src/pffi-gauche.c \ -fPIC \ -lffi \ -shared \ -I./include
|
||||||
src/pffi-gauche.c \
|
gauche-package
|
||||||
-fPIC \
|
|
||||||
-lffi \
|
|
||||||
-shared \
|
|
||||||
-I./include
|
|
||||||
|
|
||||||
jenkinsfile:
|
jenkinsfile:
|
||||||
gosh -r7 -I ./snow build.scm
|
gosh -r7 -I ./snow build.scm
|
||||||
|
|
@ -27,7 +23,7 @@ jenkinsfile:
|
||||||
libtest.o: src/libtest.c
|
libtest.o: src/libtest.c
|
||||||
${CC} -o libtest.o -fPIC -c src/libtest.c -I./include
|
${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
|
${CC} -o libtest.so -shared -fPIC src/libtest.c -I./include
|
||||||
|
|
||||||
libtest.a: libtest.o src/libtest.c
|
libtest.a: libtest.o src/libtest.c
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue