Property java.library.path
i've found out how to set the library path correctly with java tools
committer: Markus Bröker <mbroeker@largo.homelinux.org>
obj-m += khello.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
install:
cp khello.ko /lib/modules/$(shell uname -r)/misc/;
depmod -a
distclean: clean
rm -f modules.order