source: trunk/src/Makefile.am @ 153

Last change on this file since 153 was 153, checked in by guyru, 5 years ago

reorganize Makefile.am

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1bin_PROGRAMS = openyahtzee
2openyahtzee_SOURCES = \
3        About.cpp \
4        DBwrapper.cpp \
5        dice_graphics.cpp \
6        dice_theme_dialog.cpp \
7        MainFrame.cpp \
8        HighScoreDialog.cpp \
9        HighScoreTableDB.cpp \
10        icon.xpm \
11        icon32.xpm \
12        openyahtzee.cpp \
13        SettingsDB.cpp \
14        SettingsDialog.cpp \
15        ScoreDice.cpp \
16        UtilityFunctions.cpp \
17        wxDynamicBitmap.cpp
18
19# set the include path found by configure
20AM_CPPFLAGS = $(all_includes)
21
22# the library search path.
23
24dice_graphics =  \
25        dice/theme1/one.xpm \
26        dice/theme1/two.xpm \
27        dice/theme1/three.xpm \
28        dice/theme1/four.xpm \
29        dice/theme1/five.xpm \
30        dice/theme1/six.xpm \
31        dice/theme2/one.xpm \
32        dice/theme2/two.xpm \
33        dice/theme2/three.xpm \
34        dice/theme2/four.xpm \
35        dice/theme2/five.xpm \
36        dice/theme2/six.xpm \
37        dice/theme3/1.xpm \
38        dice/theme3/2.xpm \
39        dice/theme3/3.xpm \
40        dice/theme3/4.xpm \
41        dice/theme3/5.xpm \
42        dice/theme3/6.xpm
43
44noinst_HEADERS = MainFrame.h ObjectsID.h SettingsDB.h HighScoreTableDB.h \
45        HighScoreDialog.h SettingsDialog.h Icon.h icon32.ico wxDynamicBitmap.h \
46        About.h UtilityFunctions.h ScoreDice.h dice_graphics.h DBwrapper.h \
47        dice_theme_dialog.h $(dice_graphics)
48
49AM_CXXFLAGS = `wx-config --cxxflags`
50openyahtzee_LDADD = -lsqlite3
51openyahtzee_LDFLAGS = `wx-config --libs`
Note: See TracBrowser for help on using the repository browser.