*** empty log message ***
[dana/urxvt.git] / autoconf / Make.common.in
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://software.schmorp.de/#rxvt-unicode
12
13 #-------------------------------------------------------------------------
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 man1dir = @mandir@/man1
32 man1ext = 1
33 man7dir = @mandir@/man7
34 man7ext = 7
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 #-------------------------------------------------------------------------