Makefile revision 493
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync###############################################################################
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# winsysck 1.x Makefile
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# Use subject to license terms.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# Permission is hereby granted, free of charge, to any person obtaining a
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# copy of this software and associated documentation files (the
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# "Software"), to deal in the Software without restriction, including
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# without limitation the rights to use, copy, modify, merge, publish,
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# distribute, and/or sell copies of the Software, and to permit persons
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# to whom the Software is furnished to do so, provided that the above
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# copyright notice(s) and this permission notice appear in all copies of
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# the Software and that both the above copyright notice(s) and this
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# permission notice appear in supporting documentation.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# Except as contained in this notice, the name of a copyright holder
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# shall not be used in advertising or otherwise to promote the sale, use
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# or other dealings in this Software without prior written authorization
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# of the copyright holder.
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync# @(#)Makefile 1.1 08/08/07
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync#
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsyncOBJS = main.o
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsyncwinsysck: $(OBJS)
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) -lX11
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync
4ee2f4fc8e99dc69ba5d63fd7dd3f52a38d0501evboxsyncinstall:
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync $(INSTALL) -m 755 winsysck $(DESTDIR)/usr/X11/bin/winsysck
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync $(INSTALL) -m 644 winsysck.man \
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync $(DESTDIR)/usr/X11/share/man/man1/winsysck.1
13493ab7596e827b8d0caab2c89e635dd65f78f9vboxsync