Home | History | Annotate | Line # | Download | only in xsetwallpaper
Makefile revision 1.1
      1  1.1  jmcneill #	$NetBSD: Makefile,v 1.1 2011/10/22 22:06:17 jmcneill Exp $
      2  1.1  jmcneill 
      3  1.1  jmcneill NOMAN=		# defined
      4  1.1  jmcneill 
      5  1.1  jmcneill .include <bsd.own.mk>
      6  1.1  jmcneill 
      7  1.1  jmcneill PROG=		xsetwallpaper
      8  1.1  jmcneill SRCS=		xsetwallpaper.c
      9  1.1  jmcneill SRCS+=		stb_image.c
     10  1.1  jmcneill 
     11  1.1  jmcneill CPPFLAGS+=	-I${NETBSDSRCDIR}/sys -I${NETBSDSRCDIR}/sys/dev/stbi
     12  1.1  jmcneill 
     13  1.1  jmcneill SRCPATH=        ${X11SRCDIR.local}/programs/xsetwallpaper
     14  1.1  jmcneill 
     15  1.1  jmcneill LDADD+=		-lm -lX11
     16  1.1  jmcneill DPADD+=		${LIBM} ${LIBX11}
     17  1.1  jmcneill 
     18  1.1  jmcneill .PATH:		${X11SRCDIR.local}/programs/xsetwallpaper
     19  1.1  jmcneill .PATH:		${NETBSDSRCDIR}/sys/dev/stbi
     20  1.1  jmcneill 
     21  1.1  jmcneill WARNS=		4
     22  1.1  jmcneill 
     23  1.1  jmcneill CPPFLAGS.stb_image.c+=	-Wno-shadow
     24  1.1  jmcneill CPPFLAGS.stb_image.c+=	-Wno-sign-compare
     25  1.1  jmcneill CPPFLAGS.stb_image.c+=	-Wno-missing-prototypes
     26  1.1  jmcneill CPPFLAGS.stb_image.c+=	-Wno-missing-field-initializers
     27  1.1  jmcneill 
     28  1.1  jmcneill .include <bsd.x11.mk>
     29  1.1  jmcneill .include <bsd.prog.mk>
     30