forked from e2tools/e2tools
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.am
More file actions
59 lines (51 loc) · 1.43 KB
/
Makefile.am
File metadata and controls
59 lines (51 loc) · 1.43 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
SUBDIRS = lib .
ACLOCAL_AMFLAGS = -I m4
bin_PROGRAMS = e2tools make_fs_config sysXtract
AM_CPPFLAGS = $(EXT2FS_CFLAGS) $(COM_ERR_CFLAGS)
e2tools_LDADD = $(EXT2FS_LIBS) $(COM_ERR_LIBS)
e2tools_SOURCES = \
copy.c copy.h \
e2tools.c e2tools.h \
elist.c elist.h \
ln.c ln.h \
ls.c ls.h \
mkdir.c mkdir.h \
mv.c mv.h \
progress.c progress.h \
read.c read.h \
rm.c rm.h \
tail.c tail.h \
util.c util.h \
write.c write.h
make_fs_config_LDADD = $(EXT2FS_LIBS) $(COM_ERR_LIBS)
make_fs_config_SOURCES = \
elist.c elist.h \
util.c util.h \
make_fs_config.c
sysXtract_LDADD = $(EXT2FS_LIBS) $(COM_ERR_LIBS)
sysXtract_SOURCES = \
elist.c elist.h \
util.c util.h \
read.c read.h \
sysXtract.c
EXTRA_DIST = README TODO
dist_man_MANS = e2tools.7
dist_man_MANS += e2cp.1 e2ln.1 e2ls.1 e2mkdir.1 e2mv.1 e2rm.1 e2tail.1
install-exec-hook:
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2cp
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2ln
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2ls
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2mkdir
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2mv
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2rm
$(LN_S) -f e2tools $(DESTDIR)$(bindir)/e2tail
uninstall-hook:
$(RM) -f $(DESTDIR)$(bindir)/e2cp
$(RM) -f $(DESTDIR)$(bindir)/e2ln
$(RM) -f $(DESTDIR)$(bindir)/e2ls
$(RM) -f $(DESTDIR)$(bindir)/e2mkdir
$(RM) -f $(DESTDIR)$(bindir)/e2mv
$(RM) -f $(DESTDIR)$(bindir)/e2rm
$(RM) -f $(DESTDIR)$(bindir)/e2tail
test:
@echo "no tests yet"