summaryrefslogtreecommitdiff
path: root/examples/Makefile.am
blob: 384da248a21eb0901de3da2c70d4013d0e9a5f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
examplesdir = $(pkgdatadir)/examples
examples_DATA =					\
	animation.scm				\
	coroutine.scm				\
	font.scm				\
	particles.scm				\
	shader.scm				\
	simple.scm				\
	tilemap.scm

imagedir = $(pkgdatadir)/examples/images
image_DATA = 					\
	images/bullet.png			\
	images/p1_front.png			\
	images/princess.png			\
	images/stars.png			\
	images/tiles.png

fontdir = $(pkgdatadir)/examples/fonts
font_DATA = fonts/Boxy-Bold.ttf

shaderdir = $(pkgdatadir)/examples/shaders
shader_DATA = 					\
	shaders/vertex-shader.glsl		\
	shaders/fragment-shader.glsl