[comp.windows.x] contrib: clients/xbgsun

casey@lll-crg.llnl.gov (Casey Leedom) (01/13/89)

Imakefile for original X.V11R3 distribution contrib/clients/xbgsun:

	# Imakefile for xbgsun
	#
	# OPTIONS may have one of the following values:
	#   -DIMAGE uses XImage manipulation for fast image loading.  may not work
	#           on all systems.
	#
	        DEFINES = -DIMAGE
	LOCAL_LIBRARIES = $(XLIB)
	  SYS_LIBRARIES = -lm
	           SRCS = xbgsun.c
	           OBJS = xbgsun.o
	
	ComplexProgramTarget(xbgsun)

Imakefile for recently posted xbgsun/xviewsun:

	# Imakefile for xbgsun & xviewsun
	#
	# jim frost 12.19.88
	#
	# -DPATH should indicate the local image directory if one exists.
	# -DSUFFIX indicates a default suffix for images if desired.  if
	# images are compressed, the suffix should NOT include the .Z since .Z
	# is automatically appended if no uncompressed file is found.
	#
	        DEFINES = -DPATH=\"/usr/local/lib/suntools/backgrounds\" -DSUFFIX=\"\"
	LOCAL_LIBRARIES = $(XLIB)
	
	          SRCS1 = common.c xviewsun.c
	          OBJS1 = common.o xviewsun.o
	
	          SRCS2 = common.c xbgsun.c
	          OBJS2 = common.o xbgsun.o
	
	       PROGRAMS = xviewsun xbgsun
	
	ComplexProgramTarget_1(xviewsun,$(LOCAL_LIBRARIES),)
	
	ComplexProgramTarget_2(xbgsun,$(LOCAL_LIBRARIES),)