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

fixed Makefile to not give errors

parent 15232a65
No related branches found
No related tags found
No related merge requests found
......@@ -6,16 +6,16 @@ AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)
#to build the executable
bin_PROGRAMS = partition_allocator
# bin_PROGRAMS = partition_allocator
partition_allocator_SOURCES = partition_allocator.c partition_allocator.h \
graph_solver.c graph_solver.h \
graph_structs.c graph_structs.h
# partition_allocator_SOURCES = partition_allocator.c partition_allocator.h \
# graph_solver.c graph_solver.h \
# graph_structs.c graph_structs.h
partition_allocator_LDADD = \
$(top_builddir)/src/common/libcommon.la
# partition_allocator_LDADD = \
# $(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
lib_LTLIBRARIES = libpartition_allocator.la
......
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