-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.am
More file actions
67 lines (63 loc) · 1.66 KB
/
Makefile.am
File metadata and controls
67 lines (63 loc) · 1.66 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ----------------------------------------------------------------------------
#
# DicomSel: DICOM Image Selector
#
# Copyright (C) 2005, 2006 IRCAD
# Authors: Benjamin Gaillard, Marc-Aurèle Mörk, Guillaume Spitz
#
# ----------------------------------------------------------------------------
#
# File: Makefile.am
#
# Description: Automake Makefile
#
# ----------------------------------------------------------------------------
#
# << LICENSE >>
#
# ----------------------------------------------------------------------------
# Subdirectories
SUBDIRS = \
libdicom \
$(DCMTK_DIR) \
$(OPENJPEG_DIR) \
src \
doc
DIST_SUBDIRS = \
$(SUBDIRS) \
rfsample
# Extra files to include in the distribution archive
EXTRA_DIST = \
Makefile.msc \
extra.mk \
head/README \
head/info.txt \
head/license-gpl.txt \
head/license.txt \
include/dicomsel/README \
include/dicomsel/BitmapPanel.h \
include/dicomsel/DcmtkCollection.h \
include/dicomsel/DcmtkFile.h \
include/dicomsel/DicomCollection.h \
include/dicomsel/DicomFile.h \
include/dicomsel/DicomTree.h \
include/dicomsel/LibDicomCollection.h \
include/dicomsel/LibDicomFile.h \
include/dicomsel/MainFrame.h \
include/dicomsel/Store.h \
include/dicomsel/StoreDialog.h \
include/dicomsel/StoreSCP.h \
include/dicomsel/StoreSCU.h \
include/dicomsel/TagDialog.h \
include/dicomsel/TagSet.h \
include/dicomsel/dcmtk.h \
include/dicomsel/ipc.h \
msvc/README \
msvc/config.h \
msvc/flags.mak \
tools/README \
tools/gencom.sh \
tools/mkdcmtk.sh \
tools/wxmsvc.sh \
tools/xbuildwx.sh
# End of File