1noinst_PROGRAMS = krdemo
2
3krdemo_SOURCES = bemgame.cpp \
4blttest.cpp \
5demos.cpp \
6space.cpp \
7spritetest.cpp \
8tiletest.cpp \
9gamefactory.cpp \
10scale.cpp \
11sinwave.cpp \
12title.cpp \
13text.cpp \
14shooter.cpp \
15demos.h \
16allship.h \
17bem.h
18
19
20#dist_DATA = `find . -name *.bmp -name *.xml -name *.jpg -name *.gif -name *.tga -name *.pcx -name *.bin -name *.png -name ltconfig -name encodeall`
21
22dist_data_DATA = encodeall
23
24#Hackery to copy all the datafiles to the distribution
25dist-hook:
26	find . -name \*.bmp -exec cp {} $(distdir) \; 2>/dev/null
27	find . -name \*.xml -exec cp {} $(distdir) \; 2>/dev/null
28	find . -name \*.jpg -exec cp {} $(distdir) \; 2>/dev/null
29	find . -name \*.gif -exec cp {} $(distdir) \; 2>/dev/null
30	find . -name \*.tga -exec cp {} $(distdir) \; 2>/dev/null
31	find . -name \*.pcx -exec cp {} $(distdir) \; 2>/dev/null
32	find . -name \*.bin -exec cp {} $(distdir) \; 2>/dev/null
33	find . -name \*.png -exec cp {} $(distdir) \; 2>/dev/null
34	find . -name \*.bmp -exec cp {} $(distdir) \; 2>/dev/null
35	find . -name \*.txt -exec cp {} $(distdir) \; 2>/dev/null
36
37
38krdemo_LDADD = @SDL_LIBS@
39