xzoom

A simple screen magnifier for X11.
git clone git://r-36.net/xzoom
Log | Files | Refs

Imakefile (641B)


      1 #ifndef XCOMM
      2 #define XCOMM #
      3 #endif
      4 XCOMM Imakefile for xzoom
      5 XCOMM Copyright Itai Nahshon 1995, 1996
      6 XCOMM
      7 XCOMM Valid compile time options:
      8 XCOMM -DFRAME: source area is marked with a rectangular frame.
      9 XCOMM -DXSHM:  use X11 shared memory extension.
     10 XCOMM -DTIMER: count time between window updates (just for testing).
     11 XCOMM -DNO_USLEEP: for system that do not have the usleep function
     12 XCOMM -DBCOPY: use bcopy() instead of memmove()
     13 
     14 XCOMM DEFINES = -DFRAME -DXSHM -DTIMER -DNO_USLEEP
     15 
     16 DEFINES = -DFRAME -DXSHM
     17 
     18 LOCAL_LIBRARIES = -lXext -lX11 -lXt
     19 
     20 NAME = xzoom
     21 
     22 BINDIR = /usr/bin
     23 MANPATH = /usr/share/man
     24 
     25 SimpleProgramTarget($(NAME))