blob: 73dfd9844f2b584e7a64ff4bbc6ac4916098fca6 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
SUBDIRS = fonts
EXTRA_DIST = autogen.sh upload.pl SlackBuild.in SlackBuild build_rpms.sh \
xine-lib.spec.in xine-lib.spec \
xine_logo.png xine_logo.zyuy2 xine-fontconv.c
datadir = $(XINE_SKINDIR)
data_DATA = xine_logo.png xine_logo.zyuy2
bin_SCRIPTS = xine-config
if HAVE_IMLIB
logoconv = xine-logoconv
endif
bin_PROGRAMS = $(logoconv)
CFLAGS = $(IMLIB_CFLAGS)
xine_logoconv_SOURCES = xine-logoconv.c
xine_logoconv_LDADD = $(IMLIB_LIBS)
debug:
install-debug: install
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
xine-fontconv: xine-fontconv.c
gcc -g -o xine-fontconv xine-fontconv.c -lfreetype -lz -I/usr/include/freetype2
|