~ubuntu-branches/ubuntu/edgy/e2fsprogs/edgy-updates

« back to all changes in this revision

Viewing changes to lib/blkid/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Theodore Y. Ts'o
  • Date: 2006-05-29 11:07:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060529110753-uvkuaxqr96y31kqy
Tags: 1.39-1
* New upstream version
* Fix debugfs's dump_unused command so it will not core dump on
  filesystems with a 64k blocksize
* Clarified and improved man pages, including spelling errors
  (Closes: #368392, #368393, #368394, #368179)
* New filesystems are now created with directory indexing and
  on-line resizing enabled by default
* Fix previously mangled wording in an older Debian changelog entry
* Fix doc-base pointer to the top-level html file (Closes: #362544, #362970)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
ELF_IMAGE = libblkid
38
38
ELF_MYDIR = blkid
39
39
ELF_INSTALL_DIR = $(root_libdir)
40
 
ELF_OTHER_LIBS = -L../.. -luuid
 
40
ELF_OTHER_LIBS = -L../.. -luuid $(DEVMAPPER_LIBS)
41
41
 
42
42
BSDLIB_VERSION = 2.0
43
43
BSDLIB_IMAGE = libblkid
112
112
        @echo " LD $@"
113
113
        @$(CC) -o tst_tag -DTEST_PROGRAM $(srcdir)/tag.c $(LIBS_BLKID) $(ALL_CFLAGS)
114
114
 
 
115
tst_types: tst_types.o blkid_types.h 
 
116
        @echo " LD $@"
 
117
        @$(CC) -o tst_types tst_types.o 
 
118
 
115
119
../../misc/blkid.o: $(top_srcdir)/misc/blkid.c blkid.h
116
120
        @echo " CC $@"
117
121
        @$(CC) $(ALL_CFLAGS) -c $(top_srcdir)/misc/blkid.c \
121
125
        @echo " LD $@"
122
126
        @$(CC) -o blkid ../../misc/blkid.o libblkid.a $(LIBUUID)
123
127
 
 
128
test_probe: test_probe.in Makefile
 
129
        @echo "Creating test_probe..."
 
130
        @echo "#!/bin/sh" > test_probe
 
131
        @echo "SRCDIR=@srcdir@" >> test_probe
 
132
        @cat $(srcdir)/test_probe.in >> test_probe
 
133
        @chmod +x test_probe
 
134
 
124
135
check:: all tst_cache tst_dev tst_devname tst_devno tst_getsize tst_probe \
125
 
 tst_read tst_resolve tst_save tst_tag
 
136
 tst_read tst_resolve tst_save tst_tag test_probe tst_types
 
137
        ./test_probe
 
138
        ./tst_types
126
139
 
127
140
blkid.pc: $(srcdir)/blkid.pc.in $(top_builddir)/config.status
128
141
        @echo " CONFIG.STATUS $@"
162
175
        done
163
176
 
164
177
clean::
165
 
        $(RM) -f \#* *.s *.o *.orig *.a *~ *.bak tst_* core profiled/* \
 
178
        $(RM) -f \#* *.s *.o *.orig *.a *~ *.bak tst_* tests/*.out tests/*.ok \
 
179
                tests/*.img results test_probe core profiled/* \
166
180
                checker/* blkid_types.h ../libblkid.a ../libblkid_p.a \
167
181
                $(SMANPAGES) blkid
 
182
        -rmdir tests
168
183
 
169
184
mostlyclean:: clean
170
185
distclean:: clean
171
186
        $(RM) -f .depend Makefile blkid.pc \
172
187
                $(srcdir)/TAGS $(srcdir)/Makefile.in.old
173
188
 
 
189
$(OBJS): subdirs
 
190
 
174
191
# +++ Dependency line eater +++
175
192
176
193
# Makefile dependencies follow.  This must be the last section in
195
212
 $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h \
196
213
 $(top_srcdir)/lib/uuid/uuid.h
197
214
resolve.o: $(srcdir)/resolve.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \
198
 
 $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h $(srcdir)/probe.h
 
215
 $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h
199
216
save.o: $(srcdir)/save.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \
200
217
 $(top_builddir)/lib/blkid/blkid_types.h $(srcdir)/list.h
201
218
tag.o: $(srcdir)/tag.c $(srcdir)/blkidP.h $(srcdir)/blkid.h \