1## Process this file with automake to produce Makefile.in
2
3INCLUDES = \
4	@GTK_CFLAGS@ \
5	-I../lib -I../pixmaps -I..
6
7bin_PROGRAMS = euchre
8
9euchre_DEPENDENCIES = ../lib/libeuchre.a ../pixmaps/libepixmap.a
10euchre_SOURCES = \
11	ComputerGuiPlayer.cpp \
12	GuiGame.cpp \
13	GuiOptions.cpp \
14	GuiPlayer.cpp \
15	HumanGuiPlayer.cpp \
16	callbacks.cpp \
17	globals.cpp \
18	interface.c \
19	support.cpp \
20	main.cpp \
21	ComputerGuiPlayer.hpp \
22	GuiGame.hpp \
23	GuiOptions.hpp \
24	GuiPlayer.hpp \
25	HumanGuiPlayer.hpp \
26	callbacks.hpp \
27	globals.hpp \
28	interface.h \
29	support.hpp
30
31euchre_LDADD = @GTK_LIBS@ -L../lib -leuchre -L../pixmaps -lepixmap
32