Makefile.am revision 6df26cac
16df26cacSmrg# Copyright 2005 Adam Jackson. 26df26cacSmrg# 36df26cacSmrg# Permission is hereby granted, free of charge, to any person obtaining a 46df26cacSmrg# copy of this software and associated documentation files (the "Software"), 56df26cacSmrg# to deal in the Software without restriction, including without limitation 66df26cacSmrg# on the rights to use, copy, modify, merge, publish, distribute, sub 76df26cacSmrg# license, and/or sell copies of the Software, and to permit persons to whom 86df26cacSmrg# the Software is furnished to do so, subject to the following conditions: 96df26cacSmrg# 106df26cacSmrg# The above copyright notice and this permission notice (including the next 116df26cacSmrg# paragraph) shall be included in all copies or substantial portions of the 126df26cacSmrg# Software. 136df26cacSmrg# 146df26cacSmrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 156df26cacSmrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 166df26cacSmrg# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 176df26cacSmrg# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 186df26cacSmrg# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 196df26cacSmrg# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 206df26cacSmrg 216df26cacSmrg# this is obnoxious: 226df26cacSmrg# -module lets us name the module exactly how we want 236df26cacSmrg# -avoid-version prevents gratuitous .0.0.0 version numbers on the end 246df26cacSmrg# _ladir passes a dummy rpath to libtool so the thing will actually link 256df26cacSmrg# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. 266df26cacSmrgAM_CFLAGS = @XORG_CFLAGS@ 276df26cacSmrgvmware_drv_la_LTLIBRARIES = vmware_drv.la 286df26cacSmrgvmware_drv_la_LDFLAGS = -module -avoid-version 296df26cacSmrgvmware_drv_ladir = @moduledir@/drivers 306df26cacSmrg 316df26cacSmrgvmware_drv_la_SOURCES = \ 326df26cacSmrg bits2pixels.c \ 336df26cacSmrg bits2pixels.h \ 346df26cacSmrg guest_os.h \ 356df26cacSmrg includeCheck.h \ 366df26cacSmrg svga_escape.h \ 376df26cacSmrg svga_limits.h \ 386df26cacSmrg svga_modes.h \ 396df26cacSmrg svga_overlay.h \ 406df26cacSmrg svga_reg.h \ 416df26cacSmrg svga_struct.h \ 426df26cacSmrg vm_basic_types.h \ 436df26cacSmrg vm_device_version.h \ 446df26cacSmrg vmware.c \ 456df26cacSmrg vmwarecurs.c \ 466df26cacSmrg vmware.h \ 476df26cacSmrg vmwarectrl.c \ 486df26cacSmrg vmwarectrl.h \ 496df26cacSmrg vmwarectrlproto.h \ 506df26cacSmrg vmwarexinerama.c \ 516df26cacSmrg vmwarevideo.c 526df26cacSmrg 53