Skip to content

Commit

Permalink
Merge pull request alisdair#1 from alexmyczko/patch-1
Browse files Browse the repository at this point in the history
Create GNUmakefile
  • Loading branch information
alexmyczko authored Sep 28, 2017
2 parents ad72c6d + 90fb8e6 commit 7342a09
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
include $(GNUSTEP_MAKEFILES)/common.make

PACKAGE_NAME=Freecell
APP_NAME=Freecell

VERSION=0

Freecell_OBJC_FILES=\
Card.m\
CardView.m\
Game.m\
GameController.m\
GameView.m\
History.m\
HistoryController.m\
PreferencesController.m\
Result.m\
Table.m\
TableLocation.m\
TableMove.m\
main.m

Freecell_C_FILES=\
vccRand.c

Freecell_RESOURCE_FILES=\
Cards/bonded.png\
Cards/large-bonded.png\
Cards/unedited-bonded.png\
Freecell.icns

Freecell_LOCALIZED_RESOURCE_FILES=\
MainMenu.nib/keyedobjects.nib\
MainMenu.nib/designable.nib\
Credits.html\
Help/preferences.png\
Help/history.html\
Help/logos.png\
Help/history.png\
Help/play.html\
# Help/Help idx\
Help/links.html\
Help/game.html\
Help/move-start.png\
Help/move-end.png\
Help/logo.png\
Help/game.png\
Help/Freecell.html\
Help/tips.html\
Help/preferences.html\
InfoPlist.strings\
Localizable.strings

Freecell_LANGUAGES=\
English

Freecell_PRINCIPAL_CLASS=Freecell

Freecell_MAIN_MODEL_FILE=Freecell

ADDITIONAL_CPPFLAGS+= -DGNUSTEP

-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble

0 comments on commit 7342a09

Please sign in to comment.