1 1.1 christos # $NetBSD: Makefile,v 1.1 2013/04/11 16:06:47 christos Exp $ 2 1.1 christos 3 1.1 christos # Try to undo the doxygen lossage in the man pages. 4 1.1 christos 5 1.1 christos HSRCS1= \ 6 1.1 christos buffer.h.3 \ 7 1.1 christos buffer_compat.h.3 \ 8 1.1 christos dns.h.3 \ 9 1.1 christos dns_compat.h.3 \ 10 1.1 christos http.h.3 \ 11 1.1 christos http_compat.h.3 \ 12 1.1 christos rpc.h.3 \ 13 1.1 christos rpc_compat.h.3 \ 14 1.1 christos tag.h.3 \ 15 1.1 christos tag_compat.h.3 \ 16 1.1 christos thread.h.3 \ 17 1.1 christos util.h.3 18 1.1 christos 19 1.1 christos HMAN1=${HSRCS1:S/^/ev/g:S/.h.3/.3/g} 20 1.1 christos 21 1.1 christos .for i in ${HSRCS1} 22 1.1 christos ev${i:S/.h.3/.3/g}: $i 23 1.1 christos ${.CURDIR}/fixman ${TOOL_SED} ${.ALLSRC} ${.TARGET} 24 1.1 christos .endfor 25 1.1 christos 26 1.1 christos HSRCS2= \ 27 1.1 christos bufferevent_ssl.h.3 \ 28 1.1 christos event.h.3 \ 29 1.1 christos event_compat.h.3 30 1.1 christos 31 1.1 christos .for i in ${HSRCS2} 32 1.1 christos ${i:S/.h.3/.3/g}: $i 33 1.1 christos ${.CURDIR}/fixman ${TOOL_SED} ${.ALLSRC} ${.TARGET} 34 1.1 christos .endfor 35 1.1 christos 36 1.1 christos HMAN2=${HSRCS2:S/.h.3/.3/g} 37 1.1 christos 38 1.1 christos MAN+= \ 39 1.1 christos bufferevent.3 \ 40 1.1 christos deprecated.3 \ 41 1.1 christos evbuffer_cb_info.3 \ 42 1.1 christos evbuffer_iovec.3 \ 43 1.1 christos evbuffer_ptr.3 \ 44 1.1 christos event_base.3 \ 45 1.1 christos event_config.3 \ 46 1.1 christos evthread_condition_callbacks.3 \ 47 1.1 christos evthread_lock_callbacks.3 \ 48 1.1 christos evutil_addrinfo.3 49 1.1 christos 50 1.1 christos MAN+= ${HMAN1} ${HMAN2} 51 1.1 christos 52 1.1 christos CLEANFILES+=${HMAN1} ${HMAN2} 53 1.1 christos 54 1.1 christos .include <bsd.man.mk> 55