1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# @(#)Imakefile 6/17/94
# Imakefile - plotmtv
#
# Permission to use, copy, modify, and distribute this software and its
# documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies and that
# both that copyright notice and this permission notice appear in
# supporting documentation.
#
# This file is provided AS IS with no warranties of any kind. The author
# shall have no liability with respect to the infringement of copyrights,
# trade secrets or any patents by this file or any part thereof. In no
# event will the author be liable for any lost revenue or profits or
# other special, indirect and consequential damages.
#
#
LOCALBINDIR = ../Bin
INCLUDES = -I../Lib
LOCAL_LIBRARIES = ../Lib/libctr.a $(XLIB)
SYS_LIBRARIES = -lm
SRCS = test_plotmtv.c test_plotX11.c test_plotX11_mult.c \
plotX11_cmn.c plotX11_2D.c plotX11_3D.c \
plotps_cmn.c plotps_2D.c plotps_3D.c \
plotcmn.c
OBJS = test_plotmtv.o test_plotX11.o test_plotX11_mult.o \
plotX11_cmn.o plotX11_2D.o plotX11_3D.o \
plotps_cmn.o plotps_2D.o plotps_3D.o \
plotcmn.o
PROGNAME = plotmtv
install.local:: all $(PROGRAM)
$(INSTALL) -c $(INSTPGMFLAGS) $(PROGNAME) $(LOCALBINDIR)
ComplexProgramTarget($(PROGNAME))
|