ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/autoconf/Make.common.in
Revision: 1.10
Committed: Wed Jan 4 05:24:55 2006 UTC (18 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0, post_menubar_removal, rel-6_3
Changes since 1.9: +3 -3 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 root 1.9 man3dir = @mandir@/man3
20     man3ext = 3
21 root 1.5 man7dir = @mandir@/man7
22     man7ext = 7
23 pcg 1.1
24     # Tools & program stuff
25     CC = @CC@
26     CXX = @CXX@
27     CPP = @CPP@
28     MV = @MV@
29     RM = @RM@
30     RMF = @RM@ -f
31     CP = @CP@
32     LN = @LN@
33     SED = @SED@
34     AWK = @AWK@
35     ECHO = @ECHO@
36     CMP = @CMP@
37     TBL = @TBL@
38 root 1.8 PERL = @PERL@
39 pcg 1.1 INSTALL = @INSTALL@
40     INSTALL_PROGRAM = @INSTALL@ -m 755
41     INSTALL_DATA = @INSTALL@ -m 644
42    
43     # Flags & libs
44     # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
45    
46 root 1.10 CXXFLAGS = @CXXFLAGS@
47 pcg 1.1 CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
48     LDFLAGS = @LDFLAGS@
49     DEFS = @DEFS@
50     LIBS = @LIBS@
51     DINCLUDE = @DINCLUDE@
52     DLIB = @DLIB@
53    
54     # X Include directory
55     XINC = @X_CFLAGS@ @XPM_CFLAGS@
56    
57     # extra libraries needed by X on some systems, X library location
58     XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
59    
60 root 1.10 COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
61     LINK = @LINKER@ $(LDFLAGS)
62 pcg 1.1
63     # End of common section of the Makefile
64     #-------------------------------------------------------------------------