#
# file:     Imakefile
# author:   Wes Barris
# date:     10/15/93
# purpose:  Imakefile for Icop application
#
# copyright info:
#
#    @Copyright 1993
#    Research Equipment Inc. dba Minnesota Supercomputer Center
#
# RESTRICTED RIGHTS LEGEND
#
# Use, duplication, or disclosure of this software and its documentation
# by the Government is subject to restrictions as set forth in subdivision
# { (b) (3) (ii) } of the Rights in Technical Data and Computer Software
# clause at 52.227-7013.
#
#include "Motif.tmpl"

                  CC = cc
         CDEBUGFLAGS = -g
           CCOPTIONS = -prototypes -float -fullwarn -woff 2
            INCLUDES = -I.
       PROTO_DEFINES = -DFUNCPROTO -DNARROWPROTO
     LOCAL_LIBRARIES = -lXirisw $(XMLIB) $(XMPLIB) $(XMULIB)
       SYS_LIBRARIES = -lgutil -limage -lgl_s -lXext -lXt_s -lX11_s -lm
             LCOPTS2 = -g -c

SRC	= \
	cursors.c \
	fastimg.c \
	fileMenu.c \
	illegal-colors.c \
	image.c \
	imageMenu.c \
	info.c \
	main.c \
	menuBar.c \
	plot.c \
	plotMenu.c \
	prefMenu.c \
	windowOps.c \
	wbkgtoglrgb.c

OBJS	= $(SRC:.c=.o)


NormalProgramTarget(icop, $(OBJS), , $(LOCAL_LIBRARIES), $(SYSLIBS) )
AllTarget(icop)
