File: Makeconf.in

package info (click to toggle)
aca 0.1.6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 492 kB
  • ctags: 569
  • sloc: ansic: 4,254; sh: 2,237; makefile: 256
file content (74 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (2)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

#
#  Copyright (c) 1998 - 1999, 2001 Karel Zak "Zakkr" <zakkr@zf.jcu.cz>
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  $Id: Makeconf.in,v 1.3 2001/01/02 14:16:15 zakkr Exp $
#


SHELL		= /bin/sh

PACKAGE 	= aca
VERSION 	= @VERSION@
PROGRAMS 	= aca

srcdir 		= @srcdir@
prefix		= @prefix@
exec_prefix	= @exec_prefix@

bindir		= @bindir@
libdir		= @libdir@
mandir		= @mandir@/man2
docdir		= ${prefix}/doc/${PACKAGE}
locdir		= ${prefix}/share/locale
includedir 	= @includedir@/${PACKAGE}

BIN_MODE	= 0755
TEXT_MODE	= 0444

INSTALL		= @INSTALL@
INSTALL_DATA	= ${INSTALL} -m 644
INSTALL_SHLIB	= ${INSTALL}
RM		= @RM@ -f
RMDIR		= @RMDIR@
CP		= @CP@ -f
LS		= @LS@
LN_S		= @LN_S@
MAKE		= @MAKE@
XGETTEXT	= @XGETTEXT@
MSGFMT		= @MSGFMT@

DEBUG		= @debug@
MOUSE		= @mouse@
CC		= @CC@
CFLAGS		= @CFLAGS@ 
CPPFLAGS	= @CPPFLAGS@
DLSUFFIX	= @DLSUFFIX@
AROPT		= @AROPT@
SHARED_LIB	= @SHARED_LIB@

LIBS 		= @LIBS@ 
INCLUDE		= @INCLUDE@
CFLAGS		+= $(SHARED_LIB)

ifeq ($(DEBUG),yes)
	CFLAGS += -DDEBUG=1
else
	CFLAGS += -DDEBUG=0
endif

ifeq ($(MOUSE),yes)
	CFLAGS += -DHAVE_MOUSE
endif

ACA_INCLUDE 	= $(TOPDIR)/include
ACA_TARGET	= $(TOPDIR)/Share-lib
ACA_EXAMPLES	= $(TOPDIR)/Examples

#DEBUGs
#CFLAGS += -DDEBUG_POSIOTION