File: Jamrules

package info (click to toggle)
epic 3.004-17.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,192 kB
  • ctags: 3,197
  • sloc: ansic: 40,843; makefile: 530; sh: 129; perl: 17
file content (93 lines) | stat: -rw-r--r-- 3,163 bytes parent folder | download
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
93
#
# IRC II - written by Michael Sandrof
# Copyright 1991, 1996 Michael Sandrof and others, All Rights Reserved
#
# This file (Jambase.in) is donated to the public domain.
# Pay no attention to the man behind the curtain.
#

# Default paths (system-wide installs)
prefix = /usr ;
exec_prefix = ${prefix} ;
bindir = ${exec_prefix}/bin ;

# Where the ircII binary will be installed.
# 'make install' will compile and install the program
INSTALL_IRC = $(bindir)/irc ;

# Where the ircII library will be.  This is the place where 'make install'
# will put the scripts, help pages, and translation tables.  It is very
# important that this is set correctly.
IRCLIB = ${prefix}/lib/epic ;


# Alternate paths for me (home directory installs)
#prefix = $(HOME)/irc/client ;
#exec_prefix = $(prefix) ;
#bindir = $(prefix) ;
#IRCLIB = $(bindir)/irclib ;

CC = gcc ;
DEFS = -DHAVE_CONFIG_H ;
LIBS = -ltermcap  -lnsl -lresolv -lcrypt ;

# Set this to -g if you want to be able to debug the client, otherwise
# use -O to have the compiler do some optimization instead.
CFLAGS = -g -O ;

# set this to whatever flag your compiler takes to turn on ansi mode.
# gcc is ansi by default, but you can specify -ansi anyhow.  Digital's
# 'cc' requires this, as may other non-gcc compilers.
# Typically, its "-ansi" or "-std1" or some such thing.
ANSIFLAGS = ;

# Set this to -s if you want the binary to be striped.
LDFLAGS =  ;



####### You probably don't need to change anything below this line ##########
#
# Full path of the directory for ircII help files.  
# The help files are not within the source distribution, if you don't have
# them and want them, check out your nearest ircII archive.
# You may comment HELP_DIR, then the ircIIhelp service will be used.
# If you don't comment it out and want to use the IRCIIHelp service anyway,
# you must make sure that the directory doesn't exist.
HELP_DIR = $(IRCLIB)/help ;

# Full path of the directory in which to copy the
# IRCII scripts supplied with the code.  These scripts
# may be loaded by using the LOAD command in IRCII.
INSTALL_SCRIPT = $(IRCLIB)/script ;

# Default setting for IRC_PATH where irc will look for
# its script files if the environment variable is undefined.
# Usually, this should contain the same path as used for INSTALL_SCRIPT in
# the Makefile, but it can contain multiple path elements
# separated by colons. The path MUST lead to an existing directory,
# because the 'global' script is expected to be found there.
IRC_PATH = ~/.irc:$(INSTALL_SCRIPT):. ;

# Path for TRANSLATION variable.
TRANS_PATH = $(IRCLIB)/translation ;

# Set the next line to the full path for installation of the ircserv program
# if you wish to use it. 
INSTALL_IRCSERV = $(bindir)/ircserv ;

# This little program is necessary to have an interactive shell
# in a window of ircII. The 'shell' script uses it, so also update
# the path in there, if you want to enable this.
INSTALL_IRCFLUSH = $(bindir)/ircflush ;

# This program allows you to use screen/xterm's to put new irc windows
# on new screen/xterm windows.
INSTALL_WSERV = $(bindir)/wserv ;


#
# The version of this copy of IRC II
#
VERSION = 2.8.2-EPIC3.004 ;