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