1## Process this file with automake to produce Makefile.in
2
3## Created by Anjuta - will be overwritten
4## If you don't want it to overwrite it,
5## 	Please disable it in the Anjuta project configuration
6
7INCLUDES = \
8	$(GTK_CFLAGS)
9
10AM_CFLAGS =\
11	$(vte_CFLAGS)\
12	 -Wall\
13	 -g
14
15bin_PROGRAMS = gtkterm2
16
17gtkterm2_SOURCES = \
18	support.h\
19	support.c\
20	main.c\
21	interface.h\
22	interface.c\
23	callbacks.h\
24	callbacks.c\
25	prefs.c\
26	prefs.h
27
28gtkterm2_LDFLAGS = \
29	$(vte_LIBS)
30
31gtkterm2_LDADD =  \
32	$(GTK_LIBS)
33
34