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