]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - Makefile.in
Set pointer to NULL after ext2fs_free
[thirdparty/e2fsprogs.git] / Makefile.in
CommitLineData
50e1e10f
TT
1srcdir = @srcdir@
2top_srcdir = @top_srcdir@
3VPATH = @srcdir@
4top_builddir = .
fc6d9d51 5my_dir = .
50e1e10f
TT
6INSTALL = @INSTALL@
7
8@MCONFIG@
9
24c9b558
TT
10% : %.sh
11
cdf186e4
TT
12@RESIZER_CMT@RESIZE_DIR= resize
13@DEBUGFS_CMT@DEBUGFS_DIR= debugfs
39fd3d4f 14@UUID_CMT@UUID_LIB_SUBDIR= lib/uuid
14b596d4 15@BLKID_CMT@BLKID_LIB_SUBDIR= lib/blkid
147ba43d 16QUOTA_LIB_SUBDIR= lib/quota
cdf186e4 17
f239fefc 18LIB_SUBDIRS=lib/et lib/ss lib/e2p $(UUID_LIB_SUBDIR) lib/ext2fs $(BLKID_LIB_SUBDIR) $(QUOTA_LIB_SUBDIR) intl
921f4ad5 19PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po
f3b3dbbe 20SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests
50e1e10f 21
d1154eb4
TT
22SUBS= util/subst.conf lib/config.h lib/dirpaths.h \
23 lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h
50e1e10f 24
21c84b71
TT
25TAR=tar
26
78130a21 27all:: subs
6928adc9
TT
28 $(MAKE) libs
29 $(MAKE) progs
30 $(MAKE) docs
a4d09610 31
f0eae15c 32subs: $(DEP_SUBSTITUTE)
60b30dba
TT
33 @for i in $(SUBS) ; do if test -d `dirname $$i` ; \
34 then $(MAKE) $$i || exit $$? ; fi ; done
35 @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi)
36 @(if test -d lib/ext2fs ; then cd lib/ext2fs && $(MAKE) ext2_err.h; fi)
94ba8c75 37
3a0d5d39
TT
38progs: all-progs-recursive
39libs: all-libs-recursive
40all-progs-recursive all-libs-recursive: subs
50e1e10f 41
54833579
AD
42e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in
43 cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status
44
45rpm: e2fsprogs.spec
90466c19
AD
46 sh contrib/build-rpm
47
21c84b71 48docs:
47204ff9 49 -@test -d doc && cd doc && $(MAKE) libext2fs.info
21c84b71
TT
50
51install-doc-libs:
47204ff9 52 -@test -d doc && cd doc && $(MAKE) install-doc-libs
21c84b71 53
a4b2d3ce 54uninstall-doc-libs:
47204ff9 55 -@test -d doc && cd doc && $(MAKE) uninstall-doc-libs
a4b2d3ce 56
3ac9f0ef 57clean-doc:
47204ff9 58 -@test -d doc && cd doc && $(MAKE) clean
3ac9f0ef
TT
59
60distclean-doc:
94ba8c75 61 -test -d doc && cd doc && $(MAKE) distclean
3ac9f0ef 62
94ba8c75 63install: subs all-libs-recursive install-progs-recursive \
522798d3 64 install-shlibs-libs-recursive install-doc-libs
56eb4d47 65 if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi
50e1e10f 66
522798d3
TT
67install-strip: subs all-libs-recursive install-strip-progs-recursive \
68 install-shlibs-strip-libs-recursive install-doc-libs
69
a4b2d3ce
TT
70uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
71
50e1e10f
TT
72install-libs: install-libs-recursive
73
a4b2d3ce
TT
74uninstall-libs: uninstall-libs-recursive
75
58b3d8d3
MA
76check-recursive: all
77
3e377db2 78TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
522798d3 79 mostlyclean-recursive realclean-recursive:
47204ff9 80 @for subdir in $(SUBDIRS); do \
24b2c7a7
TT
81 if test -d $$subdir ; then \
82 target=`echo $@|$(SED) 's/-recursive//'`; \
83 echo making $$target in $$subdir; \
84 (cd $$subdir && $(MAKE) $$target) || exit 1; \
85 fi ; \
50e1e10f
TT
86 done
87
522798d3 88all-progs-recursive install-progs-recursive install-strip-progs-recursive \
1f803990 89 uninstall-progs-recursive: all-libs-recursive
47204ff9 90 @for subdir in $(PROG_SUBDIRS); do \
24b2c7a7
TT
91 if test -d $$subdir ; then \
92 target=`echo $@|$(SED) 's/-progs-recursive//'`; \
93 echo making $$target in $$subdir; \
94 (cd $$subdir && $(MAKE) $$target) || exit 1; \
95 fi ; \
50e1e10f
TT
96 done
97
522798d3
TT
98all-libs-recursive install-libs-recursive install-strip-libs-recursive \
99 uninstall-libs-recursive install-shlibs-libs-recursive \
100 install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive:
47204ff9 101 @for subdir in $(LIB_SUBDIRS); do \
24b2c7a7
TT
102 if test -d $$subdir ; then \
103 target=`echo $@|$(SED) 's/-libs-recursive//'`; \
104 echo making $$target in $$subdir; \
105 (cd $$subdir && $(MAKE) $$target) || exit 1; \
106 fi ; \
50e1e10f
TT
107 done
108
109mostlyclean: mostlyclean-recursive mostlyclean-local
a4d09610 110
3ac9f0ef 111clean: clean-recursive clean-local clean-doc
605e6f0e 112 $(RM) -f $(SUBS)
a4d09610 113
9c3ea642 114distclean: distclean-doc distclean-recursive
605e6f0e 115 $(RM) -rf autom4te.cache e2fsprogs.spec ext2ed/Makefile po/stamp-po
9c3ea642 116 $(MAKE) distclean-local
a4d09610 117
50e1e10f
TT
118realclean: realclean-recursive realclean-local
119
9d564f73
TT
120depend:: depend-recursive
121
4ea7ea00
TT
122lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) asm_types.h \
123 $(srcdir)/lib/ext2fs/ext2_types.h.in
124 cd $(top_builddir); CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status
125
126lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
127 $(srcdir)/lib/blkid/blkid_types.h.in
128 cd $(top_builddir); CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status
129
130lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) asm_types.h \
131 $(srcdir)/lib/uuid/uuid_types.h.in
132 cd $(top_builddir); CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status
94ba8c75 133
50e1e10f 134mostlyclean-local:
83d0b970 135 $(RM) -f \#* *~ *.orig core MAKELOG
5c36a2f8 136
50e1e10f 137clean-local: mostlyclean-local
5c36a2f8 138
50e1e10f 139distclean-local: clean-local
83d0b970 140 $(RM) -f $(SUBS) $(SUBST_CONF) \
5c36a2f8
TT
141 config.status config.log config.cache MCONFIG Makefile \
142 $(srcdir)/TAGS $(srcdir)/Makefile.in.old
143
50e1e10f
TT
144realclean-local: distclean-local
145 $(RM) -f configure
146
db7cb4b4 147check:: all check-recursive
50e1e10f 148