summaryrefslogtreecommitdiff
path: root/trunk/reprap/miscellaneous/adrians-java/Old_robot/make-c-with-java-work
blob: 9dfaf3879f90ee6e88e408555402506d6d6dee80 (plain)
1
2
3
4
5
6
7
javac c_file.java
javah -jni c_file
cp c_c_file.h c_c_file.c
[edit c_c_file.c]  
gcc -c -D_REENTRANT -fPIC -I. c_c_file.c
gcc -shared c_c_file.o -o libc_c_file.so