Skip to content
Snippets Groups Projects
Commit e0e7ae4f authored by Danny Auble's avatar Danny Auble
Browse files

partition allocator only makes .la

parent 38a92434
No related branches found
No related tags found
No related merge requests found
...@@ -6,16 +6,16 @@ AUTOMAKE_OPTIONS = foreign ...@@ -6,16 +6,16 @@ AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir) INCLUDES = -I$(top_srcdir)
# to build the executable # to build the executable
bin_PROGRAMS = partition_allocator #bin_PROGRAMS = partition_allocator
partition_allocator_SOURCES = partition_allocator.c partition_allocator.h \ #partition_allocator_SOURCES = partition_allocator.c partition_allocator.h \
graph_solver.c graph_solver.h \ # graph_solver.c graph_solver.h \
graph_structs.c graph_structs.h # graph_structs.c graph_structs.h
partition_allocator_LDADD = \ #partition_allocator_LDADD = \
$(top_builddir)/src/common/libcommon.la # $(top_builddir)/src/common/libcommon.la
partition_allocator_LDFLAGS = -export-dynamic -lm $(CMD_LDFLAGS) #partition_allocator_LDFLAGS = -export-dynamic -lm $(CMD_LDFLAGS)
# making a .la # making a .la
lib_LTLIBRARIES = libpartition_allocator.la lib_LTLIBRARIES = libpartition_allocator.la
......
...@@ -1242,7 +1242,7 @@ void pa_init() ...@@ -1242,7 +1242,7 @@ void pa_init()
/* see if we can load in the filenames from the env */ /* see if we can load in the filenames from the env */
filenames[X] = "Y_dim_torus.conf"; filenames[X] = "X_alt_dim_torus.conf";
filenames[Y] = "Y_dim_torus.conf"; filenames[Y] = "Y_dim_torus.conf";
filenames[Z] = "Z_dim_torus.conf"; filenames[Z] = "Z_dim_torus.conf";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment