added missing dependencies to fix failing unistr/ tests
[gnulib.git] / modules / warn-on-use
1 Description:
2 A C macro for emitting a warning if a function is used.
3
4 Applicability:
5 all
6
7 Files:
8 build-aux/warn-on-use.h
9 m4/warn-on-use.m4
10
11 Depends-on:
12
13 configure.ac:
14
15 Makefile.am:
16 BUILT_SOURCES += warn-on-use.h
17 # The warn-on-use.h that gets inserted into generated .h files is the same as
18 # build-aux/warn-on-use.h, except that it has the copyright header cut off.
19 warn-on-use.h: $(top_srcdir)/build-aux/warn-on-use.h
20         $(AM_V_GEN)rm -f $@-t $@ && \
21         sed -n -e '/^.ifndef/,$$p' \
22           < $(top_srcdir)/build-aux/warn-on-use.h \
23           > $@-t && \
24         mv $@-t $@
25 MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t
26
27 WARN_ON_USE_H=warn-on-use.h
28
29 Include:
30
31 License:
32 LGPLv2+
33
34 Maintainer:
35 Eric Blake