File: Imakefile

package info (click to toggle)
vnc4 4.1.1%2BX4.3.0-37.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 171,644 kB
  • sloc: ansic: 2,205,268; cpp: 56,345; sh: 38,092; pascal: 13,773; asm: 12,656; tcl: 9,182; lisp: 7,831; perl: 3,364; makefile: 2,957; yacc: 2,902; objc: 2,698; xml: 2,614; python: 2,383; lex: 1,477; awk: 901; csh: 58; sed: 50
file content (76 lines) | stat: -rw-r--r-- 1,524 bytes parent folder | download | duplicates (6)
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
75
76
XCOMM $XFree86: xc/lib/Xcursor/Imakefile,v 1.3 2002/09/26 07:52:01 alanh Exp $

#ifndef NormalLibXcursor
#define NormalLibXcursor YES
SOXCURSORREV=1.0
#endif

#ifndef SharedLibXcursor
#define SharedLibXcursor YES
#endif

#define DoNormalLib NormalLibXcursor
#define DoSharedLib SharedLibXcursor
#define DoDebugLib DebugLibXcursor
#define DoProfileLib ProfileLibXcursor

#define LibName Xcursor
#define SoRev SOXCURSORREV
#define IncSubdir X11
#define IncSubSubdir Xcursor

#include <Threads.tmpl>

XCURSOR_REVISION=0

#ifdef SharedXcursorReqs
REQUIREDLIBS = SharedXcursorReqs
#else
REQUIREDLIBS = $(LDPRELIB) $(XRENDERLIB)
#endif

ICONDIR=$(LIBDIR)/icons

DEFINES=-DICONDIR=\"$(ICONDIR)\"

SRCS =	cursor.c display.c file.c library.c xlib.c

OBJS =	cursor.o display.o file.o library.o xlib.o

HEADERS = Xcursor.h

SUBSTVARS=prefix="$(PROJECTROOT)" \
	  exec_prefix="$(BINDIR)" \
	  libdir="$(USRLIBDIR)" \
	  includedir="$(INCROOT)" \
	  PACKAGE_VERSION="$(SOXCURSORREV).$(XCURSOR_REVISION)"

#include <Library.tmpl>

MANSUFFIX=$(LIBMANSUFFIX)
InstallManPage(Xcursor,$(LIBMANDIR))

DependTarget()

all:: xcursor-config.script

xcursor-config.script: xcursor-config.in
	RemoveFile($@)
	sh config-subst $(SUBSTVARS) < xcursor-config.in > $@

InstallScript(xcursor-config,$(BINDIR))

clean::
	RemoveFile(xcursor-config.script)

all:: xcursor.pc

xcursor.pc: xcursor.pc.in
	RemoveFile($@)
	sh config-subst $(SUBSTVARS) < xcursor.pc.in > $@

InstallNonExecFile(xcursor.pc,$(USRLIBDIR)/pkgconfig)

clean::
	RemoveFile(xcursor.pc)