-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
33 lines (24 loc) · 1.36 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#############################################################################
## Setup for building programs ##
#############################################################################
AM_CPPFLAGS=-I$(top_srcdir)/src -I$(top_srcdir)/test
#############################################################################
## Testing ##
#############################################################################
noinst_PROGRAMS = burst_szip example
burst_szip_SOURCES = burst_szip.c
burst_szip_LDADD = ../test/libmcgill.la ../src/libsz.la
burst_szip_DEPENDENCIES = ../test/libmcgill.la ../src/libsz.la
example_SOURCES = example.c
example_LDADD = ../src/libsz.la
example_DEPENDENCIES = ../src/libsz.la
#############################################################################
## Testing example ##
#############################################################################
check: $(bin_PROGRAMS)
./burst_szip -msb 8 8 1024 16 image.8.in
./example
#############################################################################
## And the cleanup ##
#############################################################################
DISTCLEANFILES = image.8.in