forked from DCMTK/dcmtk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
69 lines (41 loc) · 1.31 KB
/
Makefile.in
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
68
69
#
# Makefile for config
#
@SET_MAKE@
SHELL = /bin/sh
include @common_makefile@
all: include/dcmtk/config/arith.h
install: all install-doc
install-bin:
install-doc: docs-install
install-data:
install-etc:
install-include: include-install
install-lib: include-install
install-support:
libsrc-all:
tests-all: all
check: tests-all
check-exhaustive: tests-all
include-install:
./mkinstalldirs $(DESTDIR)$(includedir)/dcmtk/config
$(INSTALL_DATA) include/dcmtk/config/osconfig.h $(DESTDIR)$(includedir)/dcmtk/config
$(INSTALL_DATA) include/dcmtk/config/arith.h $(DESTDIR)$(includedir)/dcmtk/config
docs-install:
./mkinstalldirs $(DESTDIR)$(docdir)
$(INSTALL_DATA) docs/config.txt $(DESTDIR)$(docdir)
$(INSTALL_DATA) docs/envvars.txt $(DESTDIR)$(docdir)
$(INSTALL_DATA) docs/modules.txt $(DESTDIR)$(docdir)
$(INSTALL_DATA) docs/dirstruc.txt $(DESTDIR)$(docdir)
$(INSTALL_DATA) docs/macros.txt $(DESTDIR)$(docdir)
clean:
(cd include/dcmtk/config && rm -f $(TRASH))
rm -rf $(TRASH)
distclean:
(cd include/dcmtk/config && rm -f $(DISTTRASH) osconfig.h arith.h)
rm -rf $(DISTTRASH) Makefile.def lzwtest.tif arith
include/dcmtk/config/arith.h: arith
./arith $@
arith: tests/arith.cc
$(CXX) $(CXXFLAGS) -Iinclude -I../ofstd/include -I../ofstd/libsrc -o$@ tests/[email protected]
dependencies: include/dcmtk/config/arith.h