~ubuntu-branches/ubuntu/lucid/wacom-tools/lucid

« back to all changes in this revision

Viewing changes to linuxwacom/src/xdrv/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen
  • Date: 2008-06-04 19:24:32 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20080604192432-uism8om4ffoex0gv
Tags: 1:0.8.0.2-2ubuntu1
* Merge with Debian unstable, remaining changes:
  - Bump the epoch because of old Ubuntu packaging.
  - debian/control:
    Change the Maintainer address.
    Bump the epoch on Replaces/Conflicts.
    Don't build wacom-kernel-source anymore (#71944).
  - debian/wacom.postinst:
    Remove old files.
  - debian/xserver-xorg-input-wacom.init.d, debian/rules:
    Initscript for serial devices.
  - debian/rules: Disable the scaling quirk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
x86moduledir = @WCM_MODDIR@
4
4
x86module_DATA = @WCM_XF86MODULES@
5
5
 
6
 
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include
7
 
 
8
6
# These identify which programs, libraries, and headers could
9
7
# potentially be built or installed depending on the results of
10
8
# the configuration.
17
15
                ../include/Xwacom.h
18
16
 
19
17
if WCM_ENV_XORGSDK
20
 
DRIVER_INCLUDES = -I$(WCM_XORGSDK_DIR) $(X_CFLAGS)
 
18
DRIVER_INCLUDES = -I../include -I$(WCM_XORGSDK_DIR) $(X_CFLAGS)
21
19
endif
22
20
 
23
21
if WCM_ENV_XFREE86
24
 
DRIVER_INCLUDES = \
 
22
DRIVER_INCLUDES = -I../include \
25
23
        -I$(WCM_XFREE86_DIR)/programs/Xserver/hw/xfree86/common \
26
24
        -I$(WCM_XFREE86_DIR)/programs/Xserver/hw/xfree86/loader \
27
25
        -I$(WCM_XFREE86_DIR)/programs/Xserver/hw/xfree86/os-support \
48
46
$(XF86OBJS):
49
47
        $(CC) $(CFLAGS) $(WCM_DEPFLAGS) $(DLLOADER) -pipe $(WCM_CLEVEL) \
50
48
                -pedantic -Wall -Wpointer-arith $(NO_MERGE_CONSTANTS) \
51
 
                $(NO_STACK_PROTECTOR) $(DEFAULT_INCLUDES) $(DRIVER_INCLUDES) \
 
49
                $(NO_STACK_PROTECTOR) -I$(srcdir) $(DRIVER_INCLUDES) \
52
50
                $(WCM_XSERVER64) $(XSERVER_CFLAGS) \
53
51
                -o $@ -c $(srcdir)/$(subst .o,.c,$@)
54
52
 
64
62
 
65
63
.depend: Makefile
66
64
        @rm -f .depend
67
 
        $(CC) -MM $(CFLAGS) $(DEPFLAGS) $(DRIVER_INCLUDES) $(DEFAULT_INCLUDES) $(XF86OBJS:%.o=$(srcdir)/%.c) > .depend
 
65
        $(CC) -MM $(CFLAGS) $(DEPFLAGS) $(DRIVER_INCLUDES) $(XF86OBJS:%.o=$(srcdir)/%.c) > .depend
68
66
 
69
67
-include .depend
70
68