ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/Make.common.in
Revision: 1.6
Committed: Mon Feb 14 10:44:50 2005 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.5: +1 -15 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 # autoconf/Make.common.in -*- Makefile -*-
2 root 1.6 # release date (man), version number/name
3 pcg 1.1 DATE=@DATE@
4     VERSION=@VERSION@
5 pcg 1.3
6 pcg 1.1 #-------------------------------------------------------------------------
7     RXVTNAME=@RXVTNAME@
8    
9     SHELL = /bin/sh
10    
11     # Installation target directories & other installation stuff
12     prefix = @prefix@
13     exec_prefix = @exec_prefix@
14     bindir = @bindir@
15     libdir = @libdir@
16     includedir = @includedir@
17 root 1.5 man1dir = @mandir@/man1
18     man1ext = 1
19     man7dir = @mandir@/man7
20     man7ext = 7
21 pcg 1.1
22     # Tools & program stuff
23     CC = @CC@
24     CXX = @CXX@
25     CPP = @CPP@
26     MV = @MV@
27     RM = @RM@
28     RMF = @RM@ -f
29     CP = @CP@
30     LN = @LN@
31     SED = @SED@
32     AWK = @AWK@
33     ECHO = @ECHO@
34     CMP = @CMP@
35     TBL = @TBL@
36     INSTALL = @INSTALL@
37     INSTALL_PROGRAM = @INSTALL@ -m 755
38     INSTALL_DATA = @INSTALL@ -m 644
39    
40     # Flags & libs
41     # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
42    
43     CFLAGS = @CFLAGS@
44     CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
45     LDFLAGS = @LDFLAGS@
46     DEFS = @DEFS@
47     LIBS = @LIBS@
48     DINCLUDE = @DINCLUDE@
49     DLIB = @DLIB@
50    
51     # X Include directory
52     XINC = @X_CFLAGS@ @XPM_CFLAGS@
53    
54     # extra libraries needed by X on some systems, X library location
55     XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
56    
57     LIBTOOL = @LIBTOOL@
58     COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
59 pcg 1.4 LINK = @LINKER@ $(CFLAGS) $(LDFLAGS)
60 pcg 1.1
61     # End of common section of the Makefile
62     #-------------------------------------------------------------------------