Mercurial > mplayer.hg
annotate libvo/Makefile @ 958:162a78d3cc08
FreeBSD support by Vladimir Kushnir vkushnir@Alfacom.net
author | arpi_esp |
---|---|
date | Sun, 03 Jun 2001 00:31:41 +0000 |
parents | 91087aaea5c7 |
children | 6d3a6d42c831 |
rev | line source |
---|---|
1 | 1 |
2 include config.mak | |
3 | |
4 LIBNAME = libvo.a | |
5 | |
698
f0fbf1a9bf31
Moving fast_memcpy to separate file (Size optimization)
nickols_k
parents:
326
diff
changeset
|
6 SRCS=aclib.c osd.c font_load.c rgb15to16mmx.c yuv2rgb_mmx.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 |
24 | 9 CFLAGS = $(OPTFLAGS) -I. -I.. -DMPG12PLAY |
1 | 10 # -I/usr/X11R6/include/ |
11 | |
12 .SUFFIXES: .c .o | |
13 | |
14 # .PHONY: all clean | |
15 | |
16 .c.o: | |
24 | 17 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 18 |
24 | 19 $(LIBNAME): .depend $(OBJS) |
1 | 20 $(AR) r $(LIBNAME) $(OBJS) |
21 | |
22 all: $(LIBNAME) | |
23 | |
24 clean: | |
25 rm -f *.o *.a *~ | |
26 | |
27 distclean: | |
24 | 28 rm -f Makefile.bak *.o *.a *~ .depend |
1 | 29 |
30 dep: depend | |
24 | 31 depend: .depend |
1 | 32 |
24 | 33 .depend: Makefile config.mak ../config.mak ../config.h |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
698
diff
changeset
|
34 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
1 | 35 |
24 | 36 # |
37 # include dependency files if they exist | |
38 # | |
39 ifneq ($(wildcard .depend),) | |
40 include .depend | |
41 endif |