~ubuntu-branches/ubuntu/precise/krb5/precise-updates

« back to all changes in this revision

Viewing changes to src/windows/identity/uilib/Makefile

  • Committer: Package Import Robot
  • Author(s): Sam Hartman
  • Date: 2011-12-01 19:34:41 UTC
  • mfrom: (28.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20111201193441-9tipg3aru1jsidyv
Tags: 1.10+dfsg~alpha1-6
* Fix segfault with unknown hostnames in krb5_sname_to_principal,
  Closes: #650671
* Indicate that this library breaks libsmbclient versions that depend on
  krb5_locate_kdc, Closes: #650603, #650611

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Copyright (c) 2004 Massachusetts Institute of Technology
3
 
#
4
 
# Permission is hereby granted, free of charge, to any person
5
 
# obtaining a copy of this software and associated documentation files
6
 
# (the "Software"), to deal in the Software without restriction,
7
 
# including without limitation the rights to use, copy, modify, merge,
8
 
# publish, distribute, sublicense, and/or sell copies of the Software,
9
 
# and to permit persons to whom the Software is furnished to do so,
10
 
# subject to the following conditions:
11
 
#
12
 
# The above copyright notice and this permission notice shall be
13
 
# included in all copies or substantial portions of the Software.
14
 
#
15
 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 
# SOFTWARE.
23
 
 
24
 
 
25
 
MODULE=uilib
26
 
!include <../config/Makefile.w32>
27
 
 
28
 
UIDLLOBJFILES=                  \
29
 
        $(OBJ)\rescache.obj     \
30
 
        $(OBJ)\action.obj       \
31
 
        $(OBJ)\creddlg.obj      \
32
 
        $(OBJ)\alert.obj        \
33
 
        $(OBJ)\propsheet.obj    \
34
 
        $(OBJ)\propwnd.obj      \
35
 
        $(OBJ)\uilibmain.obj    \
36
 
        $(OBJ)\actiondef.obj    \
37
 
        $(OBJ)\acceldef.obj     \
38
 
        $(OBJ)\configui.obj     \
39
 
        $(OBJ)\trackerwnd.obj   \
40
 
        $(OBJ)\uibind.obj       \
41
 
        $(OBJ)\version.obj
42
 
 
43
 
INCFILES=                       \
44
 
        $(INCDIR)\khuidefs.h    \
45
 
        $(INCDIR)\khrescache.h  \
46
 
        $(INCDIR)\khaction.h    \
47
 
        $(INCDIR)\khactiondef.h \
48
 
        $(INCDIR)\khalerts.h    \
49
 
        $(INCDIR)\khhtlink.h    \
50
 
        $(INCDIR)\khnewcred.h   \
51
 
        $(INCDIR)\khprops.h     \
52
 
        $(INCDIR)\khconfigui.h  \
53
 
        $(INCDIR)\khtracker.h   \
54
 
        $(INCDIR)\khremote.h    \
55
 
        $(INCDIR)\intaction.h   \
56
 
        $(INCDIR)\intalert.h
57
 
 
58
 
$(OBJ)\actiondef.c: actions.csv actiondef.cfg
59
 
        $(CCSV) $** $@
60
 
 
61
 
$(OBJ)\acceldef.c: accel.csv acceldef.cfg
62
 
        $(CCSV) $** $@
63
 
 
64
 
all: mkdirs $(INCFILES) $(UIDLLOBJFILES)
65
 
 
66
 
clean::
67
 
        if exist "$(INCDIR)" $(RM) $(INCFILES)
68