#
#	Imakefile for xscan
#	to build and install xscan :
#	xmkmf
# 	make
# 	make install
#

# If you don't like the 3D-Athena Widgets, comment the next line out

XAWLIB = -lXaw3d

# If you have the X-Pixmap library installed, uncomment the next 4 lines

XPMDEFINES = -Wall -D_HAS_XPM 
XPMLIBDIR = -L/usr/local/X11/lib
XPMINCDIR = -I/usr/local/X11/include/xpm
XPMLIB = $(XPMLIBDIR) -lXpm 

DEFINES = -I./.. $(XPMDEFINES) 

SRCS = main.c scan.c hardware.c
OBJS = main.o scan.o hardware.o

SYS_LIBRARIES = $(XPMLIB) XawClientLibs

all:: xscan

NormalProgramTarget(xscan,$(OBJS), , , )

InstallProgram(xscan,$(BINDIR))

InstallAppDefaults(XScan)
