~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/linux/vmci/Makefile.kernel

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
##########################################################
 
3
# Copyright (C) 2005 VMware, Inc. All rights reserved.
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify it
 
6
# under the terms of the GNU General Public License as published by the
 
7
# Free Software Foundation version 2 and no later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful, but
 
10
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
11
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
12
# for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License along
 
15
# with this program; if not, write to the Free Software Foundation, Inc.,
 
16
# 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
##########################################################
 
19
 
 
20
####
 
21
####  VMware vmci Makefile to be distributed externally
 
22
####
 
23
 
 
24
INCLUDE := -I.
 
25
 
 
26
EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE)
 
27
EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/autoconf/epoll.c, -DVMW_HAVE_EPOLL, )
 
28
EXTRA_CFLAGS += -DVMX86_TOOLS
 
29
 
 
30
obj-m += $(DRIVER).o
 
31
 
 
32
$(DRIVER)-y := $(subst $(SRCROOT)/, , $(patsubst %.c, %.o, $(wildcard $(SRCROOT)/*.c)))
 
33
 
 
34
clean:
 
35
        rm -rf $(wildcard $(DRIVER).mod.c $(DRIVER).ko \
 
36
               .tmp_versions Module.symvers Modules.symvers \
 
37
               $(foreach dir,./,$(addprefix $(dir),.*.cmd .*.o.flags *.o)))