Home | History | Annotate | Line # | Download | only in xorg-server
Makefile.servermod revision 1.7
      1  1.7       nia #	$NetBSD: Makefile.servermod,v 1.7 2021/11/01 10:05:19 nia Exp $
      2  1.7       nia 
      3  1.7       nia NOFULLRELRO=	yes
      4  1.4  christos 
      5  1.4  christos .include <bsd.own.mk>	# For /etc/mk.conf processing
      6  1.2       rtr 
      7  1.2       rtr .if defined(XMODULEDIR)
      8  1.2       rtr SHLIB_MAJOR=0
      9  1.3       mrg 
     10  1.3       mrg # dri, dri2 and fb need to be linked statically as well?
     11  1.3       mrg .if !defined(XMODULEDIRANDSTATIC)
     12  1.3       mrg MKSTATICLIB:=	no
     13  1.2       rtr .endif
     14  1.1       mrg 
     15  1.3       mrg .else
     16  1.3       mrg 
     17  1.1       mrg # if these aren't defined the module being built is not installed
     18  1.1       mrg # instead it is statically linked into the xserver
     19  1.1       mrg libinstall::
     20  1.1       mrg moduleinstall::
     21  1.3       mrg 
     22  1.1       mrg .endif
     23  1.1       mrg 
     24  1.1       mrg # x11 modules that are installed need the X11FLAGS.LOADABLE's defined
     25  1.1       mrg .if defined(XMODULEDIR)
     26  1.1       mrg CPPFLAGS+=	${X11FLAGS.LOADABLE}
     27  1.1       mrg .endif
     28  1.5       mrg 
     29  1.5       mrg CPPFLAGS+=	${X11FLAGS.DIX}
     30  1.6       mrg 
     31  1.6       mrg # IOPortBase is particularly annoying to fix
     32  1.6       mrg COPTS+=         ${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 10:? -fcommon :}
     33