summaryrefslogtreecommitdiff
path: root/gnulib/modules/snippet/warn-on-use
blob: 77f0f77d07ced7ddcc6981f5576af05736f0fd54 (plain)
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
Description:
A C macro for emitting a warning if a function is used.

Applicability:
all

Files:
build-aux/snippet/warn-on-use.h
m4/warn-on-use.m4

Depends-on:

configure.ac:

Makefile.am:
BUILT_SOURCES += warn-on-use.h
# The warn-on-use.h that gets inserted into generated .h files is the same as
# build-aux/snippet/warn-on-use.h, except that it has the copyright header cut
# off.
warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h
	$(AM_V_GEN)rm -f $@-t $@ && \
	sed -n -e '/^.ifndef/,$$p' \
	  < $(top_srcdir)/build-aux/snippet/warn-on-use.h \
	  > $@-t && \
	mv $@-t $@
MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t

WARN_ON_USE_H=warn-on-use.h

Include:

License:
LGPLv2+

Maintainer:
Eric Blake