-
Notifications
You must be signed in to change notification settings - Fork 189
/
Makefile.am
68 lines (63 loc) · 1.16 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
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
bin_PROGRAMS = fdupes
fdupes_SOURCES = fdupes.c\
fdupes.h\
errormsg.c\
errormsg.h\
dir.c\
dir.h\
log.c\
log.h\
fmatch.c\
fmatch.h\
sigint.c\
sigint.h\
flags.c\
flags.h\
confirmmatch.c\
confirmmatch.h\
removeifnotchanged.c\
removeifnotchanged.h\
mbstowcs_escape_invalid.c\
mbstowcs_escape_invalid.h\
md5/md5.c\
md5/md5.h
dist_man1_MANS = fdupes.1
if WITH_NCURSES
fdupes_SOURCES += filegroup.h\
fileaction.h\
fileaction.c\
ncurses-commands.c\
ncurses-commands.h\
ncurses-getcommand.c\
ncurses-getcommand.h\
ncurses-interface.c\
ncurses-interface.h\
ncurses-print.c\
ncurses-print.h\
ncurses-prompt.c\
ncurses-prompt.h\
ncurses-status.c\
ncurses-status.h\
commandidentifier.c\
commandidentifier.h\
wcs.c\
wcs.h\
positive_wcwidth.c\
positive_wcwidth.h
dist_man7_MANS = fdupes-help.7
endif
if WITH_SQLITE
fdupes_SOURCES += getrealpath.c\
getrealpath.h\
sdirname.c\
sdirname.h\
sbasename.c\
sbasename.h\
xdgbase.c\
xdgbase.h\
hashdb.c\
hashdb.h
endif
EXTRA_DIST = testdir CHANGES CONTRIBUTORS
dist-hook:
if [ -f $(top_srcdir)/INSTALL.enduser ]; then chmod u+w $(distdir)/INSTALL; \cp -f $(top_srcdir)/INSTALL.enduser $(distdir)/INSTALL; fi