source: git/IntegerProgramming/Makefile.am @ 0d59f94

spielwiese
Last change on this file since 0d59f94 was 76f3a18, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
added building binary programs from IntegerProgramming: toric_ideal, solve_IP, change_cost, gen_test and LLL ADD: IntegerProgramming is a SUBPACKAGE of the main package CHG: removing obsolette stuff (gccversion.sh) CHG: use gmp.h instead of si_gmp.h! TODO: install help files properly (only distributed for now)
  • Property mode set to 100644
File size: 880 bytes
Line 
1AM_CPPFLAGS = -I${srcdir} $(GMP_CFLAGS)
2AM_LDFLAGS = $(GMP_LIBS)
3
4noinst_HEADERS = list.h binomial__term_ordering.h BigInt.h LLL.h matrix.h ideal.h binomial__term_ordering.h ideal.h \
5                term_ordering.h globals.h IP_algorithms.h binomial.h testdata.h
6# Ikernel_to_send.c  # never used?
7
8bin_PROGRAMS = toric_ideal solve_IP change_cost gen_test LLL
9
10COMMON_SOURCES = term_ordering.cc binomial.cc \
11        list.cc BigInt.cc LLL.cc matrix.cc ideal.cc Buchberger.cc \
12        ideal_stuff.cc IP_algorithms.cc testdata.cc
13
14toric_ideal_SOURCES = $(COMMON_SOURCES) toric_ideal.cc
15solve_IP_SOURCES = $(COMMON_SOURCES) solve_IP.cc
16change_cost_SOURCES = $(COMMON_SOURCES) change_cost.cc
17gen_test_SOURCES = $(COMMON_SOURCES) gen_test.cc
18
19LLL_SOURCES = LLL_lattice_to_send.cc
20
21# for now we don't install any additional help files...
22EXTRA_DIST = README change_cost.hlp solve_IP.hlp toric_ideal.hlp
23
24
Note: See TracBrowser for help on using the repository browser.