source: trunk/src/Makefile.am @ 135

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

updated autotools configuration to install desktop file

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1bin_PROGRAMS = openyahtzee
2openyahtzee_SOURCES = openyahtzee.cpp MainFrame.cpp DBwrapper.cpp DBwrapper.h \
3        SettingsDB.cpp HighScoreTableDB.cpp HighScoreDialog.cpp SettingsDialog.cpp \
4        icon.xpm icon32.xpm wxDynamicBitmap.cpp About.cpp \
5        UtilityFunctions.cpp ScoreDice.cpp dice_graphics.cpp
6
7# set the include path found by configure
8INCLUDES = $(all_includes)
9
10# the library search path.
11
12noinst_HEADERS = MainFrame.h ObjectsID.h SettingsDB.h HighScoreTableDB.h \
13        HighScoreDialog.h SettingsDialog.h Icon.h icon32.ico wxDynamicBitmap.h \
14        UtilityFunctions.h ScoreDice.h dice_graphics.cpp
15
16noinst_dicedir = dice
17noinst_dice_HEADERS = dice/theme1/one.xpm dice/theme1/two.xpm dice/theme1/three.xpm \
18        dice/theme1/four.xpm dice/theme1/five.xpm dice/theme1/six.xpm
19        dice/theme2/one.xpm dice/theme2/two.xpm dice/theme2/three.xpm \
20        dice/theme2/four.xpm dice/theme2/five.xpm dice/theme2/six.xpm
21        dice/theme3/1.xpm dice/theme3/2.xpm dice/theme3/3.xpm \
22        dice/theme3/4.xpm dice/theme3/5.xpm dice/theme3/6.xpm
23
24AM_CXXFLAGS = `wx-config --cxxflags`
25openyahtzee_LDADD = -lsqlite3
26openyahtzee_LDFLAGS = `wx-config --libs`
Note: See TracBrowser for help on using the repository browser.