ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/Make.common.in
Revision: 1.5
Committed: Thu Aug 12 21:30:14 2004 UTC (19 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-5_0, rel-4_4, rel-4_6, rel-4_7, rel-4_2, rel-4_3, rel-3_7, rel-3_8, rel-4_0, rel-4_1, rel-3_6, rel-4_8, rel-4_9
Changes since 1.4: +7 -7 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 # autoconf/Make.common.in -*- Makefile -*-
2     # release date (man), LSM date, version number/name, current maintainer
3     DATE=@DATE@
4     LSMDATE=@LSMDATE@
5     VERSION=@VERSION@
6 pcg 1.3 VERNAME=rxvt-unicode-$(VERSION)
7     MAINT=Marc A. Lehmann
8 root 1.5 MAINTEMAIL=rxvt@schmorp.de
9 pcg 1.3 WEBMAINT=Marc A. Lehmann
10 root 1.5 WEBMAINTEMAIL=rxvt@schmorp.de
11     WEBPAGE=http://software.schmorp.de/#rxvt-unicode
12 pcg 1.3
13 pcg 1.1 #-------------------------------------------------------------------------
14     RXVTNAME=@RXVTNAME@
15    
16     SHELL = /bin/sh
17    
18     # This variable makes it possible to move the installation root to another
19     # directory. This is useful when you're creating a binary distribution
20     # If empty, normal root will be used.
21     # You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish
22     # that.
23     # DESTDIR = /usr/local/X11/$(VERNAME)
24    
25     # Installation target directories & other installation stuff
26     prefix = @prefix@
27     exec_prefix = @exec_prefix@
28     bindir = @bindir@
29     libdir = @libdir@
30     includedir = @includedir@
31 root 1.5 man1dir = @mandir@/man1
32     man1ext = 1
33     man7dir = @mandir@/man7
34     man7ext = 7
35 pcg 1.1
36     # Tools & program stuff
37     CC = @CC@
38     CXX = @CXX@
39     CPP = @CPP@
40     MV = @MV@
41     RM = @RM@
42     RMF = @RM@ -f
43     CP = @CP@
44     LN = @LN@
45     SED = @SED@
46     AWK = @AWK@
47     ECHO = @ECHO@
48     CMP = @CMP@
49     TBL = @TBL@
50     INSTALL = @INSTALL@
51     INSTALL_PROGRAM = @INSTALL@ -m 755
52     INSTALL_DATA = @INSTALL@ -m 644
53    
54     # Flags & libs
55     # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
56    
57     CFLAGS = @CFLAGS@
58     CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
59     LDFLAGS = @LDFLAGS@
60     DEFS = @DEFS@
61     LIBS = @LIBS@
62     DINCLUDE = @DINCLUDE@
63     DLIB = @DLIB@
64    
65     # X Include directory
66     XINC = @X_CFLAGS@ @XPM_CFLAGS@
67    
68     # extra libraries needed by X on some systems, X library location
69     XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
70    
71     LIBTOOL = @LIBTOOL@
72     COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
73 pcg 1.4 LINK = @LINKER@ $(CFLAGS) $(LDFLAGS)
74 pcg 1.1
75     # End of common section of the Makefile
76     #-------------------------------------------------------------------------