File: Make.common.in

package info (click to toggle)
xiterm%2Bthai 1.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, sid, stretch, trixie, wheezy
  • size: 1,508 kB
  • ctags: 1,838
  • sloc: ansic: 22,627; makefile: 365; sh: 364
file content (48 lines) | stat: -rw-r--r-- 1,099 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# ./Make.common.in	 -*- Makefile -*-

DATE=@DATE@
LSMDATE=@LSMDATE@
VERSION=@VERSION@
VERNAME=@VERNAME@
MAINT=@MAINT@
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=/usr/copain/xiterm' to accomplish
# that.

# Installation target directories & other installation stuff
prefix = @prefix@
exec_prefix = @exec_prefix@
# DESTDIR = /usr/local/$(VERNAME)
binprefix =
manprefix =
bindir = @bindir@
mandir = @mandir@/man1
manext = 1
datadir = @datadir@

# Tools & program stuff
CC = @CC@
CPP = @CPP@
RM = @RM@
RMF = @RM@ -f
RMRF = @RM@ -rf
CP = @CP@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL@ -D -m 755
INSTALL_DATA = @INSTALL@ -D -m 644
# add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@ #-DHAVE_LIBXPM
LDFLAGS = @LDFLAGS@
DEFS = @DEFS@
LIBS = @LIBS@
XINC = @X_CFLAGS@
XLIB = @X_LIBS@

# End of Make.common