~ubuntu-branches/ubuntu/quantal/openmotif/quantal

« back to all changes in this revision

Viewing changes to clients/mwm/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bauer
  • Date: 2010-06-23 12:12:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100623121231-u89gxdp51sg9wjj2
Tags: 2.3.0-1
* New Maintainer (Closes: #379258) 
* Acknowledge NMU changes
* New upstream release (Closes: #494375)
* Get rid of security patches as they are already part of new upstream
  release (00-xpmvuln.openmotif.patch, 342092-CVE-2005-3964.patch)
* Bump Standards to 3.8.4
* Added {misc:Depends} to make the package lintian cleaner
* Fix weak-library-dev-dependency by adding ${binary:Version}) for the
  -dev Package of openmotif
* Let package depend on autotools-dev to use newer autotools-helper-files
* Work around an autoconf-bug (Gentoo-Bug #1475)
* Added Client-side anti-aliased fonts support via XFT
* Added UTF-8 and UTF8_STRING atom support
* Ability to show text and pixmaps in Label, LabelGadget and all
  derived widgets
* Support of PNG/JPEG image formats in the same way as XPM is supported
* Increase FILE_OFFSET_BITS to 64 to show files >2GB in file-selector
  Idea taken from Magne Oestlyngen (Closes: #288537)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
MAINTAINERCLEANFILES = Makefile.in
 
2
 
 
3
EXTRA_DIST = Mwm.msg $(rc_DATA)
 
4
 
 
5
SUBDIRS = WmWsmLib
 
6
 
 
7
rcdir = @LIBDIR@
 
8
 
 
9
rc_DATA = system.mwmrc
 
10
 
 
11
bin_PROGRAMS = mwm
 
12
mwm_LDADD = ./WmWsmLib/libWsm.a ../../lib/Xm/libXm.la 
 
13
 
 
14
INCLUDES = -DLARGECURSORS -DR2_COMPAT -DUNMAP_ON_RESTART \
 
15
           -DCDE_INSTALLATION_TOP=\"@CDE_INSTALLATION_TOP@\" \
 
16
           -DCDE_CONFIGURATION_TOP=\"@CDE_CONFIGURATION_TOP@\" \
 
17
           -DBITMAPDIR=\"@INCDIR@/bitmaps\" \
 
18
           -I$(srcdir)/../../lib ${X_CFLAGS}
 
19
 
 
20
SRCS1=  WmCDInfo.c      WmCDecor.c      WmCEvent.c\
 
21
        WmCPlace.c      WmColormap.c    WmError.c\
 
22
        WmEvent.c       WmFeedback.c    \
 
23
        WmFunction.c    WmGraphics.c    WmIDecor.c\
 
24
        WmIPlace.c      WmIconBox.c     \
 
25
        WmKeyFocus.c    WmMain.c        WmManage.c\
 
26
        WmProperty.c    WmResCvt.c\
 
27
        WmResParse.c    WmResource.c    WmSignal.c                  \
 
28
        WmWinConf.c     WmWinInfo.c     WmWinList.c     WmWinState.c \
 
29
        WmWsm.c         WmXSMP.c        version.c WmCmd.c WmImage.c WmInitWs.c WmMenu.c WmProtocol.c
 
30
 
 
31
noinst_HEADERS = WmBitmap.h \
 
32
WmCDInfo.h \
 
33
WmCDecor.h \
 
34
WmCEvent.h \
 
35
WmCPlace.h \
 
36
WmCmd.h \
 
37
WmColormap.h \
 
38
WmDebug.h \
 
39
WmError.h \
 
40
WmEvent.h \
 
41
WmFeedback.h \
 
42
WmFunction.h \
 
43
WmGlobal.h \
 
44
WmGraphics.h \
 
45
WmIBitmap.h \
 
46
WmICCC.h \
 
47
WmIDecor.h \
 
48
WmIPlace.h \
 
49
WmIconBox.h \
 
50
WmImage.h \
 
51
WmInitWs.h \
 
52
WmKeyFocus.h \
 
53
WmManage.h \
 
54
WmMenu.h \
 
55
WmOL.h \
 
56
WmProperty.h \
 
57
WmProtocol.h \
 
58
WmResCvt.h \
 
59
WmResNames.h \
 
60
WmResParse.h \
 
61
WmResource.h \
 
62
WmSignal.h \
 
63
WmWinConf.h \
 
64
WmWinInfo.h \
 
65
WmWinList.h \
 
66
WmWinState.h \
 
67
WmWsm.h \
 
68
WmXSMP.h
 
69
 
 
70
mwm_SOURCES = $(SRCS1)
 
71
 
 
72
if MessageCatalog
 
73
 
 
74
CAT_FILES = Mwm.cat MwmMsgCatI.h
 
75
 
 
76
$(CAT_FILES): Mwm.msg
 
77
        $(mkinstalldirs) $(top_builddir)/localized/C/msg
 
78
        $(top_builddir)/localized/util/mkcatdefs MwmMsgCatI.h $(srcdir)/Mwm.msg >$(top_builddir)/localized/C/msg/Mwm.msg
 
79
        gencat Mwm.cat $(top_builddir)/localized/C/msg/Mwm.msg
 
80
 
 
81
endif