~ubuntu-branches/ubuntu/vivid/inform/vivid

« back to all changes in this revision

Viewing changes to inform-6.31.1/demos/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jan Christoph Nordholz
  • Date: 2008-05-26 22:09:44 UTC
  • mfrom: (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080526220944-ba7phz0d1k4vo7wx
Tags: 6.31.1+dfsg-1
* Remove a considerable number of files from the package
  due to unacceptable licensing terms.
* Repair library symlinks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Automake template for Inform demos.
 
2
 
 
3
zcodedir = $(datadir)/zcode
 
4
zcode_DATA = $(ZFILES)
 
5
 
 
6
INFFILES = advent.inf adventureland.inf balances.inf museum.inf ruins1.inf \
 
7
ruins2.inf ruins3.inf toyshop.inf
 
8
 
 
9
ZFILES = advent.z5 adventureland.z5 balances.z5 museum.z5 ruins1.z5     \
 
10
ruins2.z5 ruins3.z5 toyshop.z5
 
11
 
 
12
EXTRA_DIST = $(INFFILES)
 
13
 
 
14
ETAGS_ARGS = $(ETAGS_INFORM) $(INFFILES)
 
15
 
 
16
TAGS_DEPENDENCIES = $(INFFILES)
 
17
 
 
18
INFORM = $(top_builddir)/src/inform
 
19
 
 
20
INCPATH = $(top_srcdir)/lib,$(top_builddir)/lib
 
21
MODPATH = $(top_srcdir)/lib,$(top_builddir)/lib
 
22
 
 
23
INFFLAGS = -ix -U -E1 +include_path=$(INCPATH) +module_path=$(MODPATH)
 
24
 
 
25
SUFFIXES = .inf .z5
 
26
 
 
27
.inf.z5:; $(INFORM) $(INFFLAGS) $<
 
28
 
 
29
all: demos
 
30
 
 
31
demos: $(ZFILES)
 
32
 
 
33
$(ZFILES): $(INFORM)
 
34
 
 
35
CLEANFILES = $(ZFILES)
 
36
 
 
37
@make_include@