## Makefile (Java Native Interface for GLPK)
##
##   Should be called from the parent directory's Makefile since 
##   that deals with the dependencies
##
## ---------------------------------------------------------------------
## Copyright (C) 2003 Andrew Makhorin <mao@mai2.rcnet.ru>, Department
## for Applied Informatics, Moscow Aviation Institute, Moscow, Russia.
## All rights reserved.
##
## Author: Yuri Victorovich, Software Engineer, yuri@gjt.org.
## Author: Chris Rosebrugh, cpr@pobox.com
##  
## This file is a part of GLPK (GNU Linear Programming Kit).
##  
## GLPK is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##  
## GLPK is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
## License for more details.
##  
## You should have received a copy of the GNU General Public License
## along with GLPK; see the file COPYING. If not, write to the Free
## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
## --------------------------------------------------------------------


JNI_MD_H=`find $(JAVA_HOME)/include -name jni_md.h | sed -e "s/\/jni_md.h//"`

CFLAGS= -Wall -I../java -I/usr/local/include -I$(JAVA_HOME)/include -I$(JNI_MD_H)

libglpk_jni.so: glpk.o Makefile
	gcc -shared -o $@ \
     -Wl,--whole-archive glpk.o \
     -Wl,--no-whole-archive -L/usr/local/lib -lglpk
	chmod a+x $@

clean:
	rm -f libglpk_jni.so glpk.o
