File: Makefile.am

package info (click to toggle)
glpk 4.8-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,324 kB
  • ctags: 3,283
  • sloc: ansic: 34,984; sh: 322; makefile: 133
file content (19 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## examples/Makefile.am ##

INCLUDES = -I../include

LDADD = ../src/libglpk.a

bin_PROGRAMS = glpsol tspsol

glpsol_SOURCES = glpsol.c

tspsol_SOURCES = tspsol.c

check: glpsol
	./glpsol ./plan.mps
	@echo ""
	@echo "If optimal solution has been found, the check is OK"
	@echo ""

## eof ##