]> git.draconx.ca Git - liblbx.git/blob - src/gui/Makefile.inc
lbxgui: Add copyright notices.
[liblbx.git] / src / gui / Makefile.inc
1 # Copyright (C) 2010 Nick Bowler
2 # Copying and distribution of this file, with or without modification,
3 # are permitted in any medium without royalty provided the copyright
4 # notice and this notice are preserved.  This file is offered as-is,
5 # without any warranty.
6
7 if BUILD_LBXGUI
8
9 bin_PROGRAMS += lbxgui
10 lbxgui_SOURCES  = src/gui/render.c src/gui/lbxgui.c
11 lbxgui_LDADD    = liblbx.la $(GTK_LIBS)
12 lbxgui_CPPFLAGS = -I$(top_srcdir)/src
13 lbxgui_CFLAGS   = $(GTK_CFLAGS)
14 lbxgui_LDFLAGS  = $(AM_LDFLAGS) -export-dynamic
15
16 endif