#
# 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.
#

              TARGET = icop
               CLASS = Icop
         CDEBUGFLAGS = -g
        GL_LIBRARIES = -lgutil -limage -lGLw -lGLU -lGL -lm
     LOCAL_LIBRARIES = $(GL_LIBRARIES) XmClientLibs
#    LOCAL_LIBRARIES = $(GL_LIBRARIES) MrmClientLibs

SRCS	= \
	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	= $(SRCS:.c=.o)

fallback.h : $(CLASS).ad
	mkfallback < $(CLASS).ad > fallback.h

SpecialObjectRule(main.o, fallback.h, )
MComplexProgramTarget($(TARGET), $(LOCAL_LIBRARIES), NullParameter)
#    AllTarget($(TARGET))
DependTarget()
