~ubuntu-branches/ubuntu/trusty/codeblocks/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Vincent Cheng
  • Date: 2013-05-06 00:20:02 UTC
  • mfrom: (6.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130506002002-ngc7bwkewnak8fja
Tags: 12.11-3
* Upload to unstable.
* Update watch file, thanks to Bart Martens.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = $(WX_CXXFLAGS) \
 
2
                -I$(top_srcdir)/src/include \
 
3
                -I$(top_srcdir)/src/sdk/wxscintilla/include
 
4
 
 
5
pluginlibdir = $(pkglibdir)/plugins
 
6
 
 
7
pluginlib_LTLIBRARIES = libNassiShneiderman.la
 
8
 
 
9
libNassiShneiderman_la_LDFLAGS = -module -version-info 0:1:0 -shared -no-undefined -avoid-version
 
10
 
 
11
libNassiShneiderman_la_LIBADD = $(PLUGIN_WX_LIBS) ../../../sdk/libcodeblocks.la
 
12
 
 
13
libNassiShneiderman_la_SOURCES = bricks.cpp \
 
14
                cbEditorPanel.cpp \
 
15
                commands.cpp \
 
16
                CParser.cpp \
 
17
                DataObject.cpp \
 
18
                FileContent.cpp \
 
19
                GraphBricks.cpp \
 
20
                GraphFabric.cpp \
 
21
                HooverDrawlet.cpp \
 
22
                InsertBrickTask.cpp \
 
23
                logger.cpp \
 
24
                NassiDiagramWindow.cpp \
 
25
                NassiDropTarget.cpp \
 
26
                NassiEditorPanel.cpp \
 
27
                NassiFileContent.cpp \
 
28
                NassiPlugin.cpp \
 
29
                NassiView.cpp \
 
30
                parseactions.cpp \
 
31
                PasteTask.cpp \
 
32
                RedHatchDrawlet.cpp \
 
33
                RedLineDrawlet.cpp \
 
34
                Task.cpp \
 
35
                TextCtrl.cpp \
 
36
                TextCtrlTask.cpp \
 
37
                TextGraph.cpp
 
38
 
 
39
noinst_HEADERS = bricks.h \
 
40
                cbEditorPanel.h \
 
41
                commands.h \
 
42
                DataObject.h \
 
43
                FileContent.h \
 
44
                GraphBricks.h \
 
45
                GraphFabric.h \
 
46
                HooverDrawlet.h \
 
47
                InsertBrickTask.h \
 
48
                logger.h \
 
49
                NassiBrickVisitor.h \
 
50
                NassiDiagramWindow.h \
 
51
                NassiDropTarget.h \
 
52
                NassiEditorPanel.h \
 
53
                NassiFileContent.h \
 
54
                NassiPlugin.h \
 
55
                NassiView.h \
 
56
                parseactions.h \
 
57
                parserules.h \
 
58
                PasteTask.h \
 
59
                RedHatchDrawlet.h \
 
60
                RedLineDrawlet.h \
 
61
                Task.h \
 
62
                TextCtrl.h \
 
63
                TextCtrlTask.h \
 
64
                TextGraph.h
 
65
 
 
66
 
 
67
EXTRA_DIST =    $(srcdir)/*.cbp \
 
68
                $(srcdir)/rc/*.xpm \
 
69
                $(srcdir)/EditTextTask.h \
 
70
                $(srcdir)/EditTextTask.cpp \
 
71
                $(srcdir)/HooverLine.h \
 
72
                $(srcdir)/HooverLine.cpp \
 
73
                $(srcdir)/TaskSelect.h \
 
74
                $(srcdir)/TaskSelect.cpp \
 
75
                $(srcdir)/TaskTest.h \
 
76
                $(srcdir)/TaskTest.cpp \
 
77
                manifest.xml
 
78
 
 
79
pkgdata_DATA = NassiShneiderman.zip
 
80
 
 
81
CLEANFILES = $(pkgdata_DATA)
 
82
 
 
83
NassiShneiderman.zip: manifest.xml
 
84
        PWD=`pwd` cd $(srcdir) && zip $(PWD)/NassiShneiderman.zip manifest.xml > /dev/null