Mercurial > mplayer.hg
annotate libvo/Makefile @ 1870:07dda0fb9e5e
updated with Arpi's english fixes
author | gabucino |
---|---|
date | Sat, 08 Sep 2001 06:52:59 +0000 |
parents | f6d2a4bc9bb5 |
children | cb5dde69354b |
rev | line source |
---|---|
1 | 1 |
2 include config.mak | |
3 | |
4 LIBNAME = libvo.a | |
5 | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1234
diff
changeset
|
6 SRCS=aclib.c osd.c font_load.c yuv2rgb.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_odivx.c x11_common.c $(OPTIONAL_SRCS) |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
698
diff
changeset
|
7 OBJS=$(SRCS:.c=.o) |
1 | 8 |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1234
diff
changeset
|
9 ifeq ($(TARGET_ARCH_X86),yes) |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1234
diff
changeset
|
10 SRCS += rgb15to16mmx.c yuv2rgb_mmx.c |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1234
diff
changeset
|
11 endif |
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1234
diff
changeset
|
12 |
1680
f6d2a4bc9bb5
Enable mediaLib support for Solaris on UltraSPARC CPUs
jkeil
parents:
1552
diff
changeset
|
13 CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(MLIB_INC) -DMPG12PLAY #-Wall |
1 | 14 # -I/usr/X11R6/include/ |
15 | |
16 .SUFFIXES: .c .o | |
17 | |
18 # .PHONY: all clean | |
19 | |
20 .c.o: | |
24 | 21 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 22 |
1010 | 23 $(LIBNAME): $(OBJS) |
1 | 24 $(AR) r $(LIBNAME) $(OBJS) |
25 | |
26 all: $(LIBNAME) | |
27 | |
28 clean: | |
29 rm -f *.o *.a *~ | |
30 | |
31 distclean: | |
24 | 32 rm -f Makefile.bak *.o *.a *~ .depend |
1 | 33 |
34 dep: depend | |
35 | |
1010 | 36 depend: |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
698
diff
changeset
|
37 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
1 | 38 |
24 | 39 # |
40 # include dependency files if they exist | |
41 # | |
42 ifneq ($(wildcard .depend),) | |
43 include .depend | |
44 endif |