forked from adrianlopezroche/fdupes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
72 lines (67 loc) · 1.18 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
69
70
71
72
bin_PROGRAMS = fdupes
if NO_NCURSES
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\
mbstowcs_escape_invalid.c\
mbstowcs_escape_invalid.h\
positive_wcwidth.c\
positive_wcwidth.h\
md5/md5.c\
md5/md5.h
dist_man1_MANS = fdupes.1
else
fdupes_SOURCES = fdupes.c\
fdupes.h\
filegroup.h\
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\
errormsg.c\
errormsg.h\
wcs.c\
wcs.h\
dir.c\
dir.h\
log.c\
log.h\
fmatch.c\
fmatch.h\
sigint.c\
sigint.h\
flags.c\
flags.h\
mbstowcs_escape_invalid.c\
mbstowcs_escape_invalid.h\
positive_wcwidth.c\
positive_wcwidth.h\
md5/md5.c\
md5/md5.h
dist_man1_MANS = fdupes.1
dist_man7_MANS = fdupes-help.7
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