~ubuntu-branches/ubuntu/oneiric/eggdrop/oneiric

« back to all changes in this revision

Viewing changes to scripts/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Guilherme de S. Pastore
  • Date: 2004-06-17 09:15:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040617091528-64rrw1sa33lkfhmh
Tags: 1.6.16-2
* Fixed typo on README.Debian
* Fixed hyphens in manual page
* Converted debian/rules to CDBS
* Set path to binary on example config file
* Changed LANGDIR on src/eggdrop.h (Closes: #254824)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile for scripts/
2
 
# $Id: Makefile.in,v 1.11 2000/11/08 19:52:38 guppy Exp $
 
2
# $Id: Makefile.in,v 1.12 2003/12/09 22:21:46 wcc Exp $
3
3
 
4
4
SHELL = @SHELL@
5
5
top_srcdir = @top_srcdir@
18
18
klined.tcl notes2.tcl ques5.tcl sentinel.tcl userinfo.tcl cmd_resolve.tcl
19
19
 
20
20
EXESCRIPTS = autobotchk botchk weed
21
 
DATADIR = @datadir@
22
21
 
23
22
doofus:
24
23
        @echo ""
32
31
        @rm -f *~
33
32
 
34
33
install:
35
 
        @if test ! -d $(DATADIR)/scripts; then \
36
 
                echo "Creating a scripts subdirectory."; \
37
 
                $(top_srcdir)/misc/mkinstalldirs $(DATADIR)/scripts; \
 
34
        @if test ! -d $(DEST)/scripts; then \
 
35
                echo "Creating 'scripts' subdirectory."; \
 
36
                $(top_srcdir)/misc/mkinstalldirs $(DEST)/scripts; \
38
37
                echo "Copying scripts."; \
39
38
                for i in $(DOCS); do \
40
 
                        $(INSTALL_DATA) $(srcdir)/$$i $(DATADIR)/scripts/; \
 
39
                        $(INSTALL_DATA) $(srcdir)/$$i $(DEST)/scripts/; \
41
40
                done; \
42
41
                for i in $(SCRIPTS); do \
43
 
                        $(INSTALL_DATA) $(srcdir)/$$i $(DATADIR)/scripts/; \
 
42
                        $(INSTALL_DATA) $(srcdir)/$$i $(DEST)/scripts/; \
44
43
                done; \
45
44
                for i in $(EXESCRIPTS); do \
46
 
                        $(INSTALL_SCRIPT) $(srcdir)/$$i $(DATADIR)/scripts/; \
 
45
                        $(INSTALL_SCRIPT) $(srcdir)/$$i $(DEST)/scripts/; \
47
46
                done; \
48
47
                if test ! "x`echo $(srcdir)/help/*.help`" = "x$(srcdir)/help/*.help"; then \
49
 
                        if test ! -d $(DATADIR)/help; then \
 
48
                        if test ! -d $(DEST)/help; then \
50
49
                                echo "Creating 'help' subdirectory."; \
51
 
                                $(top_srcdir)/misc/mkinstalldirs $(DATADIR)/help; \
 
50
                                $(top_srcdir)/misc/mkinstalldirs $(DEST)/help; \
52
51
                        fi; \
53
52
                        for i in $(srcdir)/help/*.help; do \
54
 
                                $(INSTALL_DATA) $$i $(DATADIR)/help/; \
 
53
                                $(INSTALL_DATA) $$i $(DEST)/help/; \
55
54
                        done; \
56
55
                fi; \
57
56
                if test ! "x`echo $(srcdir)/help/msg/*.help`" = "x$(srcdir)/help/msg/*.help"; then \
58
 
                        if test ! -d $(DATADIR)/help/msg; then \
 
57
                        if test ! -d $(DEST)/help/msg; then \
59
58
                                echo "Creating 'help/msg' subdirectory."; \
60
 
                                $(top_srcdir)/misc/mkinstalldirs $(DATADIR)/help/msg; \
 
59
                                $(top_srcdir)/misc/mkinstalldirs $(DEST)/help/msg; \
61
60
                        fi; \
62
61
                        for i in $(srcdir)/help/msg/*.help; do \
63
 
                                $(INSTALL_DATA) $$i $(DATADIR)/help/msg/; \
 
62
                                $(INSTALL_DATA) $$i $(DEST)/help/msg/; \
64
63
                        done; \
65
64
                fi; \
66
65
                if test ! "x`echo $(srcdir)/help/set/*.help`" = "x$(srcdir)/help/set/*.help"; then \
67
 
                        if test ! -d $(DATADIR)/help/set; then \
 
66
                        if test ! -d $(DEST)/help/set; then \
68
67
                                echo "Creating 'help/set' subdirectory."; \
69
 
                                $(top_srcdir)/misc/mkinstalldirs $(DATADIR)/help/set; \
 
68
                                $(top_srcdir)/misc/mkinstalldirs $(DEST)/help/set; \
70
69
                        fi; \
71
70
                        for i in $(srcdir)/help/set/*.help; do \
72
 
                                $(INSTALL_DATA) $$i $(DATADIR)/help/set/; \
 
71
                                $(INSTALL_DATA) $$i $(DEST)/help/set/; \
73
72
                        done; \
74
73
                fi; \
75
74
        fi