blob: 053df3d70f0fc72a0e3d5c3ab86d9b3c927827e3 (
plain)
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
|
XCOMM $XdotOrg: xc/lib/Xcomposite/Imakefile,v 1.1 2004/07/31 05:50:39 anholt Exp $
#ifndef NormalLibXcomposite
#define NormalLibXcomposite YES
SOXCOMPOSITEREV=1.0.0
#endif
#ifndef SharedLibXcomposite
#define SharedLibXcomposite YES
#endif
#define DoNormalLib NormalLibXcomposite
#define DoSharedLib SharedLibXcomposite
#define DoDebugLib DebugLibXcomposite
#define DoProfileLib ProfileLibXcomposite
#define LibName Xcomposite
#define SoRev SOXCOMPOSITEREV
#define IncSubdir X11
#define IncSubSubdir extensions
#include <Threads.tmpl>
#ifdef SharedXcompositeReqs
REQUIREDLIBS = SharedXcompositeReqs
#endif
XCOMPOSITE_VERSION=1.0.0
X_LIBS=-L$(SHLIBDIR) $(XONLYLIB)
X_CFLAGS=-I$(INCROOT) $(THREADS_DEFINES)
XCOMPOSITE_LIBS = $(XFIXESLIB) $(XDAMAGELIB)
XCOMPOSITE_CFLAGS =
RPATH_CFLAG = HardCodeLibdirFlag
SRCS = Xcomposite.c
OBJS = Xcomposite.o
HEADERS = Xcomposite.h
SUBSTVARS=prefix="$(PROJECTROOT)" \
exec_prefix="$(BINDIR)" \
libdir="$(USRLIBDIR)" \
hardcode_libdir_flag_spec="$(RPATH_CFLAG)" \
includedir="$(INCROOT)" \
X_LIBS="$(X_LIBS)" \
X_CFLAGS="$(X_CFLAGS)" \
XCOMPOSITE_LIBS="$(XCOMPOSITE_LIBS)" \
XCOMPOSITE_CFLAGS="$(XCOMPOSITE_CFLAGS)" \
VERSION="$(XCOMPOSITE_VERSION)"
#include <Library.tmpl>
DependTarget()
all:: xcomposite.pc
xcomposite.pc: xcomposite.pc.in
RemoveFile($@)
sh ../Xcursor/config-subst $(SUBSTVARS) < xcomposite.pc.in > $@
InstallNonExecFile(xcomposite.pc,$(USRLIBDIR)/pkgconfig)
clean::
RemoveFile(xcomposite.pc)
|