diff options
-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 |