-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
21 lines (18 loc) · 724 Bytes
/
Copy pathMakefile.am
File metadata and controls
21 lines (18 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##
## Makefile.am
##
# Makefile.am specify i addtion to the standard
AM_CXXFLAGS=-I$(top_srcdir)/include -I$(top_srcdir)/include/dicom
AM_LDFLAGS=
bin_PROGRAMS = swi_preprocess swi_process
swi_preprocess_SOURCES=swi_preprocess.cpp cmd_line_interface.cpp
swi_preprocess_LDADD= $(addprefix $(top_builddir)/, $(LIBS_MGH))
swi_preprocess_LDFLAGS=$(OS_LDFLAGS)
swi_process_SOURCES=swi_process.cpp cmd_line_interface.cpp
swi_process_LDADD= $(addprefix $(top_builddir)/, $(LIBS_MGH))
swi_process_LDFLAGS=$(OS_LDFLAGS)
# Our release target. Include files to be excluded here. They will be
# found and removed after 'make install' is run during the 'make
# release' target.
EXCLUDE_FILES=""
include $(top_srcdir)/Makefile.extra