038f0343b764048b45d95863a847b35e389b12a0
[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-$(VERSION)#
7 MAINT=Geoff Wing#
8 MAINTEMAIL=<gcw@rxvt.org>#
9 WEBMAINT=Oezguer Kesim#
10 WEBMAINTEMAIL=<oec@rxvt.org>#
11 WEBPAGE=<http://www.rxvt.org/>#
12 FTPSITENAME=ftp.rxvt.org#
13 FTPSITEDIR=/pub/rxvt#
14 #-------------------------------------------------------------------------
15 RXVTNAME=@RXVTNAME@
16
17 SHELL = /bin/sh
18
19 # This variable makes it possible to move the installation root to another
20 # directory. This is useful when you're creating a binary distribution
21 # If empty, normal root will be used.
22 # You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish
23 # that.
24 # DESTDIR = /usr/local/X11/$(VERNAME)
25
26 # Installation target directories & other installation stuff
27 prefix = @prefix@
28 exec_prefix = @exec_prefix@
29 bindir = @bindir@
30 libdir = @libdir@
31 includedir = @includedir@
32 mandir = @mandir@/man1
33 manext = 1
34
35 # Tools & program stuff
36 CC = @CC@
37 CXX = @CXX@
38 CPP = @CPP@
39 MV = @MV@
40 RM = @RM@
41 RMF = @RM@ -f
42 CP = @CP@
43 LN = @LN@
44 SED = @SED@
45 AWK = @AWK@
46 ECHO = @ECHO@
47 CMP = @CMP@
48 TBL = @TBL@
49 INSTALL = @INSTALL@
50 INSTALL_PROGRAM = @INSTALL@ -m 755
51 INSTALL_DATA = @INSTALL@ -m 644
52
53 # Flags & libs
54 # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
55
56 CFLAGS = @CFLAGS@ 
57 CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
58 LDFLAGS = @LDFLAGS@
59 DEFS = @DEFS@
60 LIBS = @LIBS@
61 DINCLUDE = @DINCLUDE@
62 DLIB = @DLIB@
63
64 # X Include directory
65 XINC = @X_CFLAGS@ @XPM_CFLAGS@
66
67 # extra libraries needed by X on some systems, X library location
68 XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
69
70 LIBTOOL = @LIBTOOL@
71 COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
72 LINK = $(CC) $(CFLAGS) $(LDFLAGS)
73
74 # End of common section of the Makefile
75 #-------------------------------------------------------------------------