~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to shaders/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
shader_include_files = $(wildcard $(srcdir)/*.h)
 
2
shader_source_files = $(wildcard $(srcdir)/*.sl)
 
3
shader_binary_files = $(addprefix $(top_builddir)/shaders/,$(notdir $(shader_source_files:.sl=.slx)))
 
4
 
 
5
.sl.slx:
 
6
        $(top_builddir)/aqsl/aqsl $< -o $@
 
7
 
 
8
shadersdir = $(pkgdatadir)/shaders
 
9
 
 
10
shaders_DATA = $(shader_include_files) $(shader_source_files) $(shader_binary_files)
 
11
 
 
12
all-local: $(shader_binary_files)
 
13
 
 
14
clean-local:
 
15
        rm -f *.slx
 
16
 
 
17
EXTRA_DIST = $(shader_include_files) $(shader_source_files)
 
18