3952N/A# Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
3952N/A#
3952N/A# Permission is hereby granted, free of charge, to any person obtaining a
3952N/A# copy of this software and associated documentation files (the "Software"),
3952N/A# to deal in the Software without restriction, including without limitation
3952N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
3952N/A# and/or sell copies of the Software, and to permit persons to whom the
3952N/A# Software is furnished to do so, subject to the following conditions:
3952N/A#
3952N/A# The above copyright notice and this permission notice (including the next
3952N/A# paragraph) shall be included in all copies or substantial portions of the
3952N/A# Software.
3952N/A#
3952N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3952N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3952N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
3952N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3952N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3952N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
3952N/A# DEALINGS IN THE SOFTWARE.
3952N/A#
3952N/A
4495N/ASRCS = xmag_multivis.c multivis.c
4586N/AOBJS = $(SRCS:.c=.o)
4586N/A
4586N/AMULTIVIS_CPPFLAGS = -DSHAPE -DALLPLANES
3952N/ALIBS = -lXext -lX11
3952N/A
3952N/Aall:: xmag_multivis
3952N/A
4586N/Axmag_multivis: $(OBJS)
3952N/A $(LD) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)
3952N/A
3952N/A.c.o:
3952N/A $(CC) $(CFLAGS) $(MULTIVIS_CPPFLAGS) $(CPPFLAGS) -c $(OUTPUT_OPTION) $<
3952N/A
3952N/Ainstall: xmag_multivis xmag_multivis.man
3952N/A mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1
3952N/A $(INSTALL) -m 0555 xmag_multivis $(DESTDIR)$(PREFIX)/bin
3952N/A $(INSTALL) -m 0444 xmag_multivis.man $(DESTDIR)$(PREFIX)/share/man/man1/xmag_multivis.1
3952N/A
3952N/A