Mercurial > mplayer.hg
annotate vidix/Makefile @ 14720:4e83e075024f
added support for raw udp:// streaming
author | nicodvb |
---|---|
date | Thu, 17 Feb 2005 20:55:57 +0000 |
parents | 3c6a2b6437df |
children | ce1ba8fd57e7 |
rev | line source |
---|---|
3991 | 1 LIBNAME = libvidix.a |
4030 | 2 SUBDIRS = drivers |
3 DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done | |
3991 | 4 |
5 include ../config.mak | |
6 | |
7 SRCS = vidixlib.c | |
8 OBJS = $(SRCS:.c=.o) | |
9 | |
7073
b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
arpi
parents:
4030
diff
changeset
|
10 CFLAGS = $(OPTFLAGS) |
3991 | 11 |
12 .SUFFIXES: .c .o | |
13 | |
14 # .PHONY: all clean | |
15 | |
16 .c.o: | |
17 $(CC) -c $(CFLAGS) -o $@ $< | |
18 | |
4030 | 19 all: $(SUBDIRS) $(LIBNAME) |
20 $(DO_MAKE) | |
21 | |
3991 | 22 $(LIBNAME): $(OBJS) |
23 $(AR) r $(LIBNAME) $(OBJS) | |
12632 | 24 $(RANLIB) $(LIBNAME) |
3991 | 25 |
26 clean: | |
27 rm -f *.o *.a *~ | |
4030 | 28 $(DO_MAKE) |
3991 | 29 |
30 distclean: | |
31 rm -f test *.o *.a *~ .depend | |
4030 | 32 $(DO_MAKE) |
3991 | 33 |
34 dep: depend | |
4030 | 35 $(DO_MAKE) |
3991 | 36 |
37 depend: | |
38 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
39 | |
4030 | 40 install: |
41 $(DO_MAKE) | |
42 | |
13702
3c6a2b6437df
make uninstall was leaving vidix, dha, and libmpdvdkit libraries
wight
parents:
12632
diff
changeset
|
43 uninstall: |
3c6a2b6437df
make uninstall was leaving vidix, dha, and libmpdvdkit libraries
wight
parents:
12632
diff
changeset
|
44 $(DO_MAKE) |
3c6a2b6437df
make uninstall was leaving vidix, dha, and libmpdvdkit libraries
wight
parents:
12632
diff
changeset
|
45 |
3991 | 46 # |
47 # include dependency files if they exist | |
48 # | |
49 ifneq ($(wildcard .depend),) | |
50 include .depend | |
51 endif |