Makefile revision 536
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# Use subject to license terms.
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync#
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# Permission is hereby granted, free of charge, to any person obtaining a
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# copy of this software and associated documentation files (the
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# "Software"), to deal in the Software without restriction, including
1c94c0a63ba68be1a7b2c640e70d7a06464e4fcavboxsync# without limitation the rights to use, copy, modify, merge, publish,
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# distribute, and/or sell copies of the Software, and to permit persons
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# to whom the Software is furnished to do so, provided that the above
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# copyright notice(s) and this permission notice appear in all copies of
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# the Software and that both the above copyright notice(s) and this
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# permission notice appear in supporting documentation.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync#
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
63b7dd87e08344e6015d0ac93eab40a088cd08efvboxsync# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
1c94c0a63ba68be1a7b2c640e70d7a06464e4fcavboxsync# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
1c94c0a63ba68be1a7b2c640e70d7a06464e4fcavboxsync# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
1c94c0a63ba68be1a7b2c640e70d7a06464e4fcavboxsync# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
1c94c0a63ba68be1a7b2c640e70d7a06464e4fcavboxsync# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync#
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# Except as contained in this notice, the name of a copyright holder
8c5d1958147c3988a7693b5a7666f5fe21a93b7bvboxsync# shall not be used in advertising or otherwise to promote the sale, use
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync# or other dealings in this Software without prior written authorization
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync# of the copyright holder.
c3cd0366348bcd10e42bd7be9ea05d194394f389vboxsync#
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync# @(#)Makefile 1.1 08/09/15
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsyncSRCS = installalias.c
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsyncOBJS = $(SRCS:.c=.o)
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsyncLIBS = -lXfont
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync
526c98af37a045a8e58a91fd6a4668fc919c87b7vboxsyncinstallalias: $(OBJS)
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync $(LD) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsyncinstall: installalias
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync mkdir -p $(DESTDIR)$(PREFIX)/lib
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync $(INSTALL) installalias $(DESTDIR)$(PREFIX)/lib
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsynclint:
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync $(LINT) -b -h $(LINTFLAGS) $(CPPFLAGS) $(SRCS) $(LIBS)
22314508d50d958e5d860ebdd2c1d125cbcf70c8vboxsync