Add Russian translation provided by Валерий Крувялис <valkru@mail.ru>
[xiph-mirror.git] / vorbis-plugins / kmpg / Makefile.in
blobfdbc2732d824ff838b620c0e1b4b70372056ca70
1 # $Id: Makefile.in,v 1.5 2000/08/15 15:32:37 msmith Exp $
2 # Makefile for the OggVorbis kmpg module.
4 # still needs an 'install' entry, but how to find kmp?
6 # DO NOT EDIT BELOW! ##########################################################
7 # (unless, of course, you know what you are doing :) ##########################
9 @SET_MAKE@
10 FLAGS=-I. -I/usr/local/include/mpeglib -I/usr/include/mpeglib -I$(KDEDIR)/include -I/usr/local/include -I../include @CFLAGS@ -fno-exceptions -fno-rtti -fno-check-new
12 OPT=@OPT@ $(FLAGS)
13 DEBUG=@DEBUG@ $(FLAGS)
14 PROFILE=@PROFILE@ $(FLAGS)
15 CC=@CC@
16 CPP=g++
18 LD=@CC@
19 LDFLAGS=@LDFLAGS@ $(FLAGS) -shared
20 AR=@AR@
21 RANLIB=@RANLIB@
22 LIBS=@LIBS@ -L$(KDEDIR)/lib -lmpeg -lpthread
24 OFILES= vorbisPlugin.o
25 TARGET= libvorbis_kmpg.so
26 HFILES= ../include/vorbis/codec.h ../include/vorbis/vorbisfile.h \
27 ../include/vorbis/internal.h ../include/vorbis/backends.h \
28 ../include/vorbis/codebook.h
30 all:
31 $(MAKE) target CFLAGS="$(OPT)"
33 debug:
34 $(MAKE) target CFLAGS="$(DEBUG)"
36 profile:
37 $(MAKE) target CFLAGS="$(PROFILE)"
39 target: $(OFILES)
40 $(LD) $(LDFLAGS) -o $(TARGET) $(OFILES) \
41 ../lib/vorbisfile.a ../lib/libvorbis.a $(LIBS)
43 $(OFILES): $(HFILES)
45 .cpp.o:
46 $(CPP) $(CFLAGS) -c $<
48 clean:
49 -rm -f *.o *.a test* *~ *.out config.* *.so
51 distclean: clean
52 -rm -f Makefile
54 install:
55 cp $(TARGET) /usr/lib