Replace build scripts with Makefiles for faster recompiles

This commit is contained in:
Iwan Timmer
2014-05-07 21:56:57 +02:00
parent 8edfaf5a31
commit b9a6f5162f
8 changed files with 68 additions and 18 deletions
-4
View File
@@ -1,4 +0,0 @@
rm *.o libnv_io.so
gcc -I $JAVA_HOME/include -I $JAVA_HOME/include/linux -fPIC -L. -c *.c
gcc -shared -Wl,-soname,libnv_io.so -Wl,--no-undefined -o libnv_io.so *.o -L.
rm *.o
+17
View File
@@ -0,0 +1,17 @@
CFLAGS = -I ${JAVA_HOME}/include -I ${JAVA_HOME}/include/linux -fPIC -L.
LDFLAGS = -shared -Wl,--no-undefined -L.
SRCS = nv_io_jni.c
TARGET_LIB = libnv_io.so
OBJS = $(SRCS:.c=.o)
$(TARGET_LIB): $(OBJS)
$(CC) ${LDFLAGS} -o $@ $^
all: $(TARGET_LIB)
clean:
rm -f ${TARGET_LIB} ${OBJS} $(SRCS:.c=.d)
.PHONY: all clean