blob: bb0b5d5225a6241d8d6adf9288bc965f90183a88 (
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
|
# $NetBSD: Makefile,v 1.11 2012/02/29 20:07:57 tron Exp $
# we encode the inter-library dependencies in the SUBDIR order:
# each library depends on at least one library in the previous group.
SUBDIR=\
X11 ICE Xau freetype2 FS fontenc lbxutil psres xtrans Xdmcp \
.WAIT \
SM Xext oldX fontconfig Xmuu Xpm \
.WAIT \
Xt Xrender GL Xfontcache font xkbfile XRes Xi Xinerama Xp Xss Xtst \
Xv XvMC Xxf86dga Xxf86misc Xxf86vm dmx \
.WAIT \
Xmu dps XTrap GLU GLw OSmesa Xcursor Xrandr Xft Xft1 xkbui \
.WAIT \
Xaw Xaw6 dpstk
.include <bsd.own.mk>
.if ${MKPIC} != "no"
SUBDIR+= xlibi18n
.endif
# Cache .OBJDIRS of LIBDPLIBS commonly used in SUBDIRs.
#
LIBDPLIBS=\
X11 ${.CURDIR}/X11/dynamic \
Xext ${.CURDIR}/Xext \
ICE ${.CURDIR}/ICE \
SM ${.CURDIR}/SM \
Xt ${.CURDIR}/Xt
libinstall::
.include <bsd.lib.mk>
.include <bsd.subdir.mk>
|