Makefile for JNI on eNp-Ty
Henry J. Cobb
hcobb@telegenisys.com
Sun Aug 9 16:53:00 GMT 1998
In my continuing mission to use the CygWin32 tools to build Java
products,
I now have a makefile for Java Naive Interface DLLs, but unfortunately
it only works with the M$ C compiler so far...
include ~/utils/include/defines.mk
LINK_OPT = /DLL
JNI_HEAD = com_welltoforgobank_accounts_MyAccount.h
JNI_SOURCE = myaccount.c
JNI_OBJS = $(JNI_SOURCE:%.c=%.obj)
JAVAPATH=../java/com/welltoforgobank/accounts
all: $(JNI_HEAD) accounts.dll
accounts.dll: $(JNI_OBJS)
$(LINK) $(LINK_OPT) $(JNI_OBJS) javai.lib /OUT:accounts.dll
%.obj: %.c $(JNI_HEAD)
$(CC) $< /c /W3
com_welltoforgobank_accounts_%.h: $(JAVAPATH)\%.java
-rm $@
javah -jni com.welltoforgobank.accounts.$*
# eNp-Ty Gnu Make Brain Damage follows...
com_welltoforgobank_accounts_MyAccount.h: $(JAVAPATH)\MyAccount.java
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
More information about the Cygwin
mailing list