File: Makefile.in

package info (click to toggle)
tkrat 1%3A2.2cvs20100105-true-dfsg-6.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,340 kB
  • ctags: 9,259
  • sloc: ansic: 96,057; tcl: 25,667; makefile: 1,638; sh: 282
file content (38 lines) | stat: -rw-r--r-- 1,347 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
#############################################################################
# TkRat software and its included text is Copyright 1996-2004 by            #
# Martin Forssen.                                                           #
#                                                                           #
# The full text of the legal notices is contained in the file called        #
# COPYRIGHT, included with this distribution.                               #
#############################################################################

# Installation directories
   datarootdir = @datarootdir@
        prefix = @prefix@
   exec_prefix = @exec_prefix@
       MAN_DIR = @mandir@
       BIN_DIR = @bindir@
      DATA_DIR = @datadir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
       LIB_DIR = @libdir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`

         SHELL = /bin/sh
       VERSION = @VERSION@
       INSTALL = @INSTALL@
     TRANSFORM = @program_transform_name@
INSTALL_PREFIX = @INSTALL_PREFIX@

#-------- No changes should be done below --------
    BITMAPS = *.xbm *.xpm

all: 

install.shared:
	if test ! -d ${INSTALL_PREFIX}${DATA_DIR} ; then\
	    ${INSTALL} -m 0755 -d ${INSTALL_PREFIX}${DATA_DIR} ;\
	fi
	for i in ${BITMAPS} ; \
	do \
	    ${INSTALL} -m 0644 $$i ${INSTALL_PREFIX}${DATA_DIR} ;\
	done

install: install.data