15 lines
445 B
Makefile
15 lines
445 B
Makefile
# XOR-based erasure codes (including HD Combination Codes)
|
|
|
|
AM_CPPFLAGS=-I./ -I../include
|
|
AM_CFLAGS = -g3 -O0 $(SIMD_FLAGS) -fPIC $(INCLUDES)
|
|
|
|
lib_LTLIBRARIES = libXorcode.la
|
|
libXorcode_la_SOURCES = xor_code.c xor_hd_code.c
|
|
libXorcode_la_LDFLAGS = -version-info 0:1:0
|
|
|
|
bin_PROGRAMS = test_xor_hd_code
|
|
test_xor_hd_code_SOURCES = test_xor_hd_code.c test_xor_hd_code.h
|
|
test_xor_hd_code_LDFLAGS = -static -lXorcode -lgf_complete
|
|
|
|
EXTRA_DIST = tools
|