path:
root/
src/
Makefile.am (
plain)
blob: fcbcdd5c44cd4e4e4fce9dab812b164b28d63b4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
bin_PROGRAMS = aggregator
aggregator_SOURCES = \
aggregator.c \
assign_protein_type.c \
check_error.c \
check_h5_error.c \
check_ncbi_error.c \
load_influenza_aa_dat.c \
load_influenza_faa.c
aggregator_LDADD = -lhdf5
noinst_HEADERS = \
assign_protein_type.h \
check_error.h \
check_h5_error.h \
check_ncbi_error.h \
load_influenza_aa_dat.h \
load_influenza_faa.h
AM_CFLAGS = -Wall -std=gnu99 -ggdb
|