COIN-OR::LEMON - Graph Library

source: glemon-0.x/Makefile.am @ 153:d79a71382836

Last change on this file since 153:d79a71382836 was 142:90d0348e14cb, checked in by Akos Ladanyi, 18 years ago

Copied license file from lemon/trunk.

File size: 2.7 KB
RevLine 
[130]1AM_CPPFLAGS = -I$(top_srcdir) -DLOCALEDIR=\""$(datadir)/locale"\"
[139]2
3SUBDIRS = po m4
[1]4
[71]5bin_PROGRAMS = glemon
[100]6BUILT_SOURCES = guipixbufs.h
7CLEANFILES = guipixbufs.h
[1]8
[71]9glemon_SOURCES = \
[1]10        all_include.h \
[106]11        algobox.cc \
12        algobox.h \
13        algowin.cc \
14        algowin.h \
[96]15        gdc-broken_edge.cc \
[1]16        graph_displayer_canvas.cc \
[96]17        graph_displayer_canvas.h \
[27]18        graph_displayer_canvas-edge.cc \
[96]19        graph_displayer_canvas-event.cc \
[28]20        graph_displayer_canvas-node.cc \
[27]21        graph_displayer_canvas-zoom.cc \
[1]22        graph-displayer.cc \
[106]23        kruskalbox.cc \
24        kruskalbox.h \
[1]25        main_win.cc \
26        main_win.h \
27        mapstorage.cc \
28        mapstorage.h \
29        map_win.cc \
[9]30        map_win.h \
[112]31        mapselector.cc \
32        mapselector.h \
[96]33        nbtab.h \
34        nbtab.cc \
[41]35        new_map_win.cc \
[53]36        new_map_win.h \
[73]37        xymap.h \
[98]38        gui_reader.h \
39        gui_reader.cc \
40        gui_writer.h \
41        gui_writer.cc \
[99]42        xml.h \
[130]43        guipixbufs.h \
[133]44        i18n.h \
[130]45        gettext.h
[1]46
[139]47glemon_CXXFLAGS = $(GTK_CFLAGS) $(LEMON_CFLAGS)
48glemon_LDFLAGS = $(GTK_LIBS) $(LEMON_LIBS)
[132]49glemon_LDADD = $(LIBINTL)
[100]50
51IMAGES = \
52        icons/addlink.png \
53        icons/addnode.png \
54        icons/delete.png \
55        icons/editlink.png \
56        icons/editnode.png \
57        icons/move.png \
58        icons/newmap.png
59
60VARIABLES = \
61        gui_icons_addlink $(srcdir)/icons/addlink.png \
62        gui_icons_addnode $(srcdir)/icons/addnode.png \
63        gui_icons_delete $(srcdir)/icons/delete.png \
64        gui_icons_editlink $(srcdir)/icons/editlink.png \
65        gui_icons_editnode $(srcdir)/icons/editnode.png \
66        gui_icons_move $(srcdir)/icons/move.png \
67        gui_icons_newmap $(srcdir)/icons/newmap.png
68
69guipixbufs.h: $(IMAGES)
70        gdk-pixbuf-csource \
71        --raw --build-list $(VARIABLES) > guipixbufs.h ||  \
72        ( rm -f guipixbufs.h && false )
73
[139]74EXTRA_DIST = \
75        $(IMAGES) \
76        guipixbufs.h \
[142]77        LICENSE \
[139]78        ABOUT-NLS
79
80MRPROPERFILES = \
81        Makefile.in \
82        configure \
83        config.h.in \
84        aclocal.m4 \
85        ABOUT-NLS \
86        m4/Makefile.in \
87        m4/lib-link.m4 \
88        m4/printf-posix.m4 \
89        m4/uintmax_t.m4 \
90        m4/signed.m4 \
91        m4/iconv.m4 \
92        m4/inttypes.m4 \
93        m4/longlong.m4 \
94        m4/glibc21.m4 \
95        m4/inttypes_h.m4 \
96        m4/codeset.m4 \
97        m4/longdouble.m4 \
98        m4/nls.m4 \
99        m4/intmax.m4 \
100        m4/lib-prefix.m4 \
101        m4/glibc2.m4 \
102        m4/xsize.m4 \
103        m4/lcmessage.m4 \
104        m4/lib-ld.m4 \
105        m4/ulonglong.m4 \
106        m4/wint_t.m4 \
107        m4/progtest.m4 \
108        m4/inttypes-pri.m4 \
109        m4/stdint_h.m4 \
110        m4/intdiv0.m4 \
111        m4/isc-posix.m4 \
112        m4/po.m4 \
113        m4/size_max.m4 \
114        m4/gettext.m4 \
115        m4/wchar_t.m4 \
116        po/Rules-quot \
117        po/en@quot.header \
118        po/insert-header.sin \
119        po/quot.sed \
120        po/en@boldquot.header \
121        po/boldquot.sed \
122        po/Makevars.template \
123        po/remove-potcdate.sin \
124        po/Makefile.in.in \
125        build-aux/mkinstalldirs \
126        build-aux/config.rpath \
127        build-aux/depcomp \
128        build-aux/missing \
129        build-aux/config.guess \
130        build-aux/config.sub \
131        build-aux/install-sh
132
133mrproper:
134        $(MAKE) $(AM_MAKEFLAGS) maintainer-clean
135        -rm -f $(MRPROPERFILES)
136
137.PHONY: mrproper
Note: See TracBrowser for help on using the repository browser.