This file is indexed.

/usr/share/doc/charybdis/doc/Makefile.in is in charybdis 3.4.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# $Id: Makefile.in 3376 2007-04-03 11:37:39Z nenolod $
CC		= @CC@
INSTALL		= @INSTALL@
INSTALL_BIN	= @INSTALL_PROGRAM@
INSTALL_DATA	= @INSTALL_DATA@
INSTALL_SUID	= @INSTALL_PROGRAM@ -o root -m 4755
RM		= @RM@
LEX		= @LEX@
LEXLIB		= @LEXLIB@
CFLAGS		= @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
LDFLAGS		= @LDFLAGS@
MKDEP		= ${CC} -MM
MV		= @MV@
RM		= @RM@
CP		= @CP@
TOUCH		= @TOUCH@

PROGRAM_PREFIX  = @PROGRAM_PREFIX@

prefix		= @prefix@
exec_prefix	= @exec_prefix@
exec_suffix	= @exec_suffix@
bindir		= @bindir@
libexecdir	= @libexecdir@
sysconfdir		= @sysconfdir@
localstatedir	= @localstatedir@
# Change this later! -- adrian
moduledir	= @moduledir@
automoduledir	= @moduledir@/autoload

# Local to the etc Makefile
mandir          = @mandir@/man8
MANPAGES        = ircd.8

CONFS		= ircd.conf reference.conf

SSL_LIBS	= @SSL_LIBS@
SSL_INCLUDES	= @SSL_INCLUDES@

IRCDLIBS	= @LIBS@ $(SSL_LIBS)

INCLUDES	= -I../include $(SSL_INCLUDES)
CPPFLAGS	= ${INCLUDES} @CPPFLAGS@

all: build
 
install-mkdirs:
	-@if test ! -d $(DESTDIR)$(sysconfdir); then \
		echo "mkdir -p $(sysconfdir)"; \
		mkdir -p $(DESTDIR)$(sysconfdir); \
	fi

	-@if test ! -d $(DESTDIR)$(mandir); then \
		echo "mkdir -p $(mandir)"; \
		mkdir -p $(DESTDIR)$(mandir); \
	fi

install: install-mkdirs build
	@echo "ircd: installing example config files ($(CONFS))"
	@for i in $(CONFS); do \
		if test -f $(DESTDIR)$(sysconfdir)/$$i; then \
			$(MV) $(DESTDIR)$(sysconfdir)/$$i $(DESTDIR)$(sysconfdir)/$$i.old; \
		fi; \
		$(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \
	done

	-@if test ! -f $(DESTDIR)$(sysconfdir)/ircd.motd; then \
		echo "ircd: installing motd file (ircd.motd)"; \
		$(INSTALL_DATA) ircd.motd $(DESTDIR)$(sysconfdir); \
	fi

	-@if test -f $(DESTDIR)$(sysconfdir)/links.txt; then \
		$(RM) $(DESTDIR)$(sysconfdir)/links.txt; \
	fi

	@echo "ircd: installing manpage"
	@for i in $(MANPAGES); do \
		if test ! -f $(DESTDIR)$(mandir)/$(PROGRAM_PREFIX)$$i; then \
			$(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/$(PROGRAM_PREFIX)$$i; \
		fi; \
	done

build:

clean:

depend:

lint:

distclean:
	${RM} -f Makefile