build: fix out of source tree build

master
Janne Grunau 2014-08-07 00:54:21 +02:00
parent d315d20d56
commit f6828cfbc1
4 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
# GF-Complete 'examples' AM file # GF-Complete 'examples' AM file
AM_CPPFLAGS=-I./ -I../include AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC $(INCLUDES) AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC
bin_PROGRAMS = gf_example_1 gf_example_2 gf_example_3 gf_example_4 \ bin_PROGRAMS = gf_example_1 gf_example_2 gf_example_3 gf_example_4 \
gf_example_5 gf_example_6 gf_example_7 gf_example_5 gf_example_6 gf_example_7

View File

@ -1,8 +1,8 @@
# GF-Complete 'core' AM file # GF-Complete 'core' AM file
# Creates the library # Creates the library
AM_CPPFLAGS=-I./ -I../include AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC $(INCLUDES) AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC
lib_LTLIBRARIES = libgf_complete.la lib_LTLIBRARIES = libgf_complete.la
libgf_complete_la_SOURCES = gf.c gf_method.c gf_wgen.c gf_w4.c gf_w8.c gf_w16.c gf_w32.c \ libgf_complete_la_SOURCES = gf.c gf_method.c gf_wgen.c gf_w4.c gf_w8.c gf_w16.c gf_w32.c \

View File

@ -1,7 +1,7 @@
# GF-Complete 'test' AM file # GF-Complete 'test' AM file
AM_CPPFLAGS=-I./ -I../include AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC $(INCLUDES) AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC
bin_PROGRAMS = gf_unit bin_PROGRAMS = gf_unit

View File

@ -1,7 +1,7 @@
# GF-Complete 'tools' AM file # GF-Complete 'tools' AM file
AM_CPPFLAGS=-I./ -I../include AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC $(INCLUDES) AM_CFLAGS = -O3 $(SIMD_FLAGS) -fPIC
TESTS=run-tests.sh TESTS=run-tests.sh