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