diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-03-15 17:38:22 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-03-15 17:44:18 (EDT) |
commit | 2259e3ae84544b04cacb0e87e76302870d355e61 (patch) | |
tree | ca075b53fe3d2e876f6d027c83d697c531e226d4 | |
parent | 6ab7e6951d99c25656dde1bd1928fc12b938a0ff (diff) | |
download | dodge-balls-2259e3ae84544b04cacb0e87e76302870d355e61.zip dodge-balls-2259e3ae84544b04cacb0e87e76302870d355e61.tar.gz dodge-balls-2259e3ae84544b04cacb0e87e76302870d355e61.tar.bz2 |
games/classic: Install game data
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | games/classic/local.mk | 22 | ||||
-rw-r--r-- | games/local.mk | 1 |
4 files changed, 25 insertions, 0 deletions
@@ -33,3 +33,4 @@ /test-suite.log /MD5SUMS /SHA256SUMS +/_* diff --git a/Makefile.am b/Makefile.am index 7530f68..0a32a67 100644 --- a/Makefile.am +++ b/Makefile.am @@ -121,3 +121,4 @@ release: files@files.pehjota.net:files/pub/$(PACKAGE)/$(VERSION)/ include $(top_srcdir)/src/local.mk +include $(top_srcdir)/games/local.mk diff --git a/games/classic/local.mk b/games/classic/local.mk new file mode 100644 index 0000000..6ed0233 --- /dev/null +++ b/games/classic/local.mk @@ -0,0 +1,22 @@ +games_classicdir = $(gamesdir)/classic + +dist_games_classic_DATA = \ + %reldir%/game.xml \ + %reldir%/icon.tmx \ + %reldir%/level01.tmx \ + %reldir%/level02.tmx \ + %reldir%/level03.tmx \ + %reldir%/level04.tmx \ + %reldir%/level05.tmx \ + %reldir%/level06.tmx \ + %reldir%/level07.tmx \ + %reldir%/level08.tmx \ + %reldir%/level09.tmx \ + %reldir%/level10.tmx \ + %reldir%/tileset.tsx + +dist_noinst_DATA = \ + %reldir%/tileset.xcf + +nodist_games_classic_DATA = \ + %reldir%/tileset.png diff --git a/games/local.mk b/games/local.mk new file mode 100644 index 0000000..251a014 --- /dev/null +++ b/games/local.mk @@ -0,0 +1 @@ +include %reldir%/classic/local.mk |