ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/Make.common.in
Revision: 1.4
Committed: Mon Mar 1 01:06:46 2004 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_1_0, rel-3_5, rel-3_4, rel-3_3, rel-3_2, rel-2_8, rel-3_0, rel-2_4, rel-2_5, rel-2_2, rel-2_3, rel-2_0, rxvt-2-0, rel-2_7
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 VERNAME=rxvt-unicode-$(VERSION)
7 MAINT=Marc A. Lehmann
8 MAINTEMAIL=<rxvt@schmorp.de>
9 WEBMAINT=Marc A. Lehmann
10 WEBMAINTEMAIL=<rxvt@schmorp.de>
11 WEBPAGE=<http://www.sourceforge.net/projects/rxvt-unicode/>
12 FTPSITENAME=ftp.rxvt.org
13 FTPSITEDIR=/pub/rxvt
14
15 #-------------------------------------------------------------------------
16 RXVTNAME=@RXVTNAME@
17
18 SHELL = /bin/sh
19
20 # This variable makes it possible to move the installation root to another
21 # directory. This is useful when you're creating a binary distribution
22 # If empty, normal root will be used.
23 # You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish
24 # that.
25 # DESTDIR = /usr/local/X11/$(VERNAME)
26
27 # Installation target directories & other installation stuff
28 prefix = @prefix@
29 exec_prefix = @exec_prefix@
30 bindir = @bindir@
31 libdir = @libdir@
32 includedir = @includedir@
33 mandir = @mandir@/man1
34 manext = 1
35
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 LINK = @LINKER@ $(CFLAGS) $(LDFLAGS)
74
75 # End of common section of the Makefile
76 #-------------------------------------------------------------------------