ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/contrib/help/Makefile.in
Revision: 30
Committed: Sun Oct 2 20:03:27 2005 UTC (18 years, 5 months ago) by adx
File size: 1158 byte(s)
Log Message:
- imported sources
- can be moved later according to the directory/branching scheme,
  but we need the svn up

File Contents

# Content
1 # Makefile to install help files
2 # $Id: Makefile.in,v 1.20 2005/09/17 18:32:57 knight Exp $
3
4 INSTALL= @INSTALL@
5 INSTALL_DATA= @INSTALL_DATA@
6 RM= @RM@
7
8 prefix= @prefix@
9 exec_prefix= @execprefix@
10 uhelpdir= ${prefix}/help/users
11 ohelpdir= ${prefix}/help/opers
12
13 SYMLINKS= topic accept cmode admin names links away whowas \
14 version kick who invite quit join list nick oper part \
15 time motd userhost users whois ison lusers user help \
16 pass error challenge knock ping pong flags
17 all:
18 build:
19 clean:
20 depend:
21
22 install:
23 @echo installing help files...
24 -@if test ! -d $(prefix)/help; then \
25 echo "mkdir $(prefix)/help"; \
26 mkdir $(prefix)/help; \
27 echo "mkdir $(prefix)/help/users"; \
28 mkdir $(prefix)/help/users; \
29 echo "mkdir $(prefix)/help/opers"; \
30 mkdir $(prefix)/help/opers; \
31 fi
32 @for help in opers/*; do \
33 if [ -f $$help ]; then \
34 ${INSTALL_DATA} $$help $(ohelpdir); \
35 fi \
36 done
37 @for help in users/*; do \
38 if [ -f $$help ]; then \
39 $(INSTALL_DATA) $$help $(uhelpdir); \
40 fi \
41 done
42 @for link in $(SYMLINKS); do \
43 rm -f $(uhelpdir)/$$link; \
44 ln -s $(ohelpdir)/$$link $(uhelpdir); \
45 done
46
47 distclean:
48 ${RM} -f Makefile
49
50 depend:

Properties

Name Value
svn:eol-style native
svn:keywords "Id Revision"