lemon-project-template-glpk
diff deps/glpk/examples/Makefile.am @ 9:33de93886c88
Import GLPK 4.47
author | Alpar Juttner <alpar@cs.elte.hu> |
---|---|
date | Sun, 06 Nov 2011 20:59:10 +0100 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/deps/glpk/examples/Makefile.am Sun Nov 06 20:59:10 2011 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +## Process this file with automake to produce Makefile.in ## 1.5 + 1.6 +INCLUDES = -I$(srcdir)/../src 1.7 + 1.8 +LDADD = ../src/libglpk.la 1.9 + 1.10 +bin_PROGRAMS = glpsol 1.11 + 1.12 +glpsol_SOURCES = glpsol.c 1.13 + 1.14 +check: glpsol$(EXEEXT) 1.15 + ./glpsol$(EXEEXT) --version 1.16 + ./glpsol$(EXEEXT) --mps $(srcdir)/plan.mps 1.17 + 1.18 +## eof ##