Makefile revision 844
1364N/A###############################################################################
1364N/A#
1364N/A# libdga Makefile
1364N/A#
1364N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
1364N/A# Use is subject to license terms.
1364N/A#
1364N/A# Permission is hereby granted, free of charge, to any person obtaining a
1364N/A# copy of this software and associated documentation files (the
1364N/A# "Software"), to deal in the Software without restriction, including
1364N/A# without limitation the rights to use, copy, modify, merge, publish,
1364N/A# distribute, and/or sell copies of the Software, and to permit persons
1364N/A# to whom the Software is furnished to do so, provided that the above
1364N/A# copyright notice(s) and this permission notice appear in all copies of
1364N/A# the Software and that both the above copyright notice(s) and this
1364N/A# permission notice appear in supporting documentation.
1364N/A#
1364N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
1364N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1364N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
1383N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
1364N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
1364N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
1370N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
1364N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
1364N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1370N/A#
1364N/A# Except as contained in this notice, the name of a copyright holder
1364N/A# shall not be used in advertising or otherwise to promote the sale, use
1364N/A# or other dealings in this Software without prior written authorization
1364N/A# of the copyright holder.
1364N/A#
1364N/A# ident "@(#)Makefile 1.1 09/11/09 SMI"
1364N/A#
1389N/A
1364N/ASHLIBLDFLAGS = -G -z defs $(LDFLAGS)
1364N/AREQUIREDLIBS = -lX11 -lsocket -lc
1383N/ADEFINES = -D_TS_ERRNO -DMT -DXTHREADS -DPANORAMIX -DIPv6 -DSVR4
1364N/A
1364N/AHEADERS = dga_Xrequests.h win_grab.h rtn_grab.h cmap_grab.h pix_grab.h \
1364N/A mbufsetstr.h vmbuf_grab.h dga_incls.h
1364N/ASRCS = dga_Xrequests.c win_grab.c dga_db.c rtn_grab.c cmap_grab.c pix_grab.c \
1364N/A mbsmemb_update.c mbsmemb_inquiry.c win_update.c mbuf_update.c \
1364N/A mbufset.c draw_inquiry.c draw_db.c pix_update.c pix_inquiry.c dga_ab.c
1364N/AOBJS = $(SRCS:.c=.o)
1364N/A
1364N/A# Inspired by automake 1.11 silent rules - hides details by default
1364N/A# Run make V=1 to show details
1383N/ADEFAULT_V = 0
1364N/AV_CC = $(V_CC_$(V))
1364N/AV_CC_ = $(V_CC_$(DEFAULT_V))
1364N/AV_CC_0 = @echo " CC " $@;
1364N/A
1364N/Aall: libdga.so.1
1364N/A
1383N/Alibdga.so.1: $(OBJS)
1383N/A $(V_CC)$(LD) $(CFLAGS) -o $@ $(SHLIBLDFLAGS) -h libdga.so.1 \
1383N/A $(OBJS) $(REQUIREDLIBS)
1383N/A
1364N/A.c.o:
1364N/A $(V_CC)$(CC) -Kpic $(CFLAGS) $(CPPFLAGS) $(DEFINES) -c $<
1364N/A
1364N/Ainstall: libdga.so.1
1364N/A mkdir -p $(DESTDIR)$(libdir) $(DESTDIR)$(INCDIR)
1364N/A $(INSTALL) libdga.so.1 $(DESTDIR)$(libdir)/libdga.so.1
1364N/A