~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/plugins/contrib/lib_finder/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
INCLUDES = $(WX_CXXFLAGS) \
4
4
                -I$(top_srcdir)/src/include \
5
 
                -I$(top_srcdir)/src/include/wxscintilla/include \
 
5
                -I$(top_srcdir)/src/sdk/wxscintilla/include \
 
6
                -I$(srcdir)/../wxSmithContribItems/wxflatnotebook/wxFlatNotebook/include \
6
7
                -I$(top_srcdir)/src/include/scripting/include \
7
8
                -I$(top_srcdir)/src/include/scripting/sqplus \
8
9
                -I$(top_srcdir)/src/include/scripting/squirrel \
9
 
                -I$(top_srcdir)/src/include/scripting/bindings
10
 
 
11
 
libdir = $(pkgdatadir)/plugins
12
 
 
13
 
lib_LTLIBRARIES = liblib_finder.la
 
10
                -I$(top_srcdir)/src/include/scripting/bindings \
 
11
                -I$(top_srcdir)/src/include/mozilla_chardet
 
12
 
 
13
pluginlibdir = $(pkglibdir)/plugins
 
14
 
 
15
pluginlib_LTLIBRARIES = liblib_finder.la
14
16
 
15
17
liblib_finder_la_LDFLAGS = -module -version-info 0:1:0 -shared -no-undefined -avoid-version
16
18
 
17
 
liblib_finder_la_LIBADD = $(PLUGIN_WX_LIBS) ../../../sdk/libcodeblocks.la
18
 
 
19
 
liblib_finder_la_SOURCES =      dirlistdlg.cpp \
20
 
                                lib_finder.cpp \
21
 
                                libraryconfigmanager.cpp \
22
 
                                processingdlg.cpp \
23
 
                                resultmap.cpp \
24
 
                                projectconfiguration.cpp \
25
 
                                projectconfigurationpanel.cpp \
26
 
                                libselectdlg.cpp \
27
 
                                pkgconfigmanager.cpp
28
 
 
29
 
 
30
 
noinst_HEADERS =        dirlistdlg.h \
31
 
                        lib_finder.h \
32
 
                        libraryconfig.h \
33
 
                        libraryconfigmanager.h \
34
 
                        libraryresult.h \
35
 
                        processingdlg.h \
36
 
                        resultmap.h \
37
 
                        projectconfiguration.h \
38
 
                        projectconfigurationpanel.h \
39
 
                        libselectdlg.h \
40
 
                        pkgconfigmanager.h
41
 
 
42
 
EXTRA_DIST =    lib_finder.cbp \
43
 
                update \
44
 
                update.bat \
45
 
                readme.txt \
46
 
                manifest.xml
47
 
#               license.txt 
 
19
liblib_finder_la_LIBADD = $(PLUGIN_WX_LIBS) \
 
20
                ../../../sdk/libcodeblocks.la \
 
21
                ../wxSmithContribItems/wxflatnotebook/wxFlatNotebook/libwxflatnotebook.la
 
22
 
 
23
liblib_finder_la_SOURCES = \
 
24
                librariesdlg.cpp \
 
25
                dirlistdlg.cpp \
 
26
                projectmissinglibs.cpp \
 
27
                headersdetectordlg.cpp \
 
28
                webresourcesmanager.cpp \
 
29
                projectconfiguration.cpp \
 
30
                resultmap.cpp \
 
31
                libraryresult.cpp \
 
32
                projectconfigurationpanel.cpp \
 
33
                pkgconfigmanager.cpp \
 
34
                librarydetectionmanager.cpp \
 
35
                libselectdlg.cpp \
 
36
                processingdlg.cpp \
 
37
                defsdownloaddlg.cpp \
 
38
                lib_finder.cpp
 
39
 
 
40
noinst_HEADERS = \
 
41
                librariesdlg.h \
 
42
                projectconfiguration.h \
 
43
                dirlistdlg.h \
 
44
                lib_finder.h \
 
45
                projectmissinglibs.h \
 
46
                webresourcesmanager.h \
 
47
                defsdownloaddlg.h \
 
48
                libraryresult.h \
 
49
                libselectdlg.h \
 
50
                headersdetectordlg.h \
 
51
                librarydetectionmanager.h \
 
52
                pkgconfigmanager.h \
 
53
                resultmap.h \
 
54
                processingdlg.h \
 
55
                librarydetectionconfig.h \
 
56
                projectconfigurationpanel.h
 
57
 
 
58
EXTRA_DIST = \
 
59
        lib_finder.cbp \
 
60
        lib_finder-unix.cbp \
 
61
        update \
 
62
        update.bat \
 
63
        readme.txt \
 
64
        manifest.xml \
 
65
        $(srcdir)/wxsmith/*.wxs
 
66
#       license.txt
48
67
 
49
68
pkgdata_DATA = lib_finder.zip
50
69
CLEANFILES = $(pkgdata_DATA)