summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: f0ce1175caaccf0aa511066666cb4e73b9a3b642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
## Process this file with automake to produce Makefile.in
SUBDIRS=

bin_PROGRAMS = glade2

INCLUDES = \
	-DGLADE_LOCALE_DIR=\""$(datadir)/locale"\" \
	$(GLADE_CFLAGS) \
	-I$(top_srcdir)/intl \
	-I$(top_builddir)/intl

CFLAGS = -g -O2 -Wall

glade2_LDADD = \
	$(GLADE_LIBS) \
	$(INTLLIBS) \
	-lpopt
## FIXME popt should be added in configure.in and checked for

glade2_DEPENDENCIES = \
	$(INTLLIBS)

glade2_SOURCES = \
	main.c \
	glade-project.c \
	glade-parameter.c \
	glade-placeholder.c \
	glade-project-view.c \
	glade-project-window.c \
	glade-project-ui.c \
	glade-widget-class.c \
	glade-xml-utils.c \
	glade-palette.c \
	glade-cursor.c \
	glade-property.c \
	glade-property-class.c \
	glade-popup.c \
	glade-widget.c \
	glade-catalog.c \
	glade-choice.c \
	glade-editor.c \
	glade-gtk.c \
	glade-utils.c \
	glade-signal.c \
	glade-packing.c \
	glade-signal-editor.c

noinst_HEADERS = \
	glade.h \
	glade-project.h \
	glade-project-view.h \
	glade-parameter.h \
	glade-placeholder.h \
	glade-editor.h \
	glade-signal-editor.h \
	glade-palette.h \
	glade-cursor.h \
	glade-project-window.h \
	glade-project-ui.h \
	glade-types.h \
	glade-widget.h \
	glade-widget-class.h \
	glade-property.h \
	glade-property-class.h \
	glade-popup.h \
	glade-choice.h \
	glade-gtk.h \
	glade-catalog.h \
	glade-utils.h \
	glade-signal.h \
	glade-packing.h \
	glade-xml-utils.h