Mercurial > hg > audiodb
view bindings/java/Makefile @ 706:6d3ed50c9d2d
The big rename (iAudioDB -> CAMUS). Remind me not to do that again.
author | mas01mj |
---|---|
date | Thu, 03 Jun 2010 16:19:25 +0000 |
parents | 10d3692e0b06 |
children |
line wrap: on
line source
CFLAGS += -shared -fPIC -g -I$(JDK)/include -I$(JDK)/include/linux -I/usr/local/include/ .SUFFIXES: .java .class .o JDK=/usr/lib/jvm/java-6-openjdk OBJS = libAudioDB_JNI.o CLASSES = AudioDB.class NATIVE_LIB = libAudioDB_JNI.so build: $(CLASSES) $(NATIVE_LIB) .java.class: $(JDK)/bin/javac $< .class.h: $(JDK)/bin/javah -jni $(<:%.class=%) $(NATIVE_LIB): $(OBJS) ld -fPIC -G $(OBJS) -laudioDB -o $@