# ./Make.common.in	 -*- Makefile -*-

# LSM date, release date (man pages), version number
#
LSMDATE=24MAY96#
FULLDATE="24 May 1996"#
VERSION=2.18beta#
VERNAME=rxvt-$(VERSION)#

srcdir = @srcdir@
VPATH  = @srcdir@

SHELL = /bin/sh

# This variable makes it possible to move the installation root to another
# directory. This is useful when you're creating a binary distribution
# If empty, normal root will be used.
# You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish
# that.
# DESTDIR = /usr/local/X11/$(VERNAME)

# Installation target directories & other installation stuff
prefix = @prefix@
exec_prefix = $(prefix)
binprefix =
manprefix =
bindir = $(exec_prefix)/bin
mandir = $(prefix)/man/man1
manext = 1

# Tools & program stuff
CC = @CC@
CPP = @CPP@
RM = @RM@
RMF = @RM@ -f
CP = @CP@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL@ -s -m 755
INSTALL_DATA = @INSTALL@ -m 644

# Flags & libs
# add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program

CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
DEFS = @DEFS@
LIBS = @LIBS@

# X Include directory
XINC = @X_CFLAGS@

# extra libraries needed by X on some systems, X library location
XLIB = @X_LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@

# End of Make.common
