Mercurial > mplayer.hg
annotate vidix/Makefile @ 22549:77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
author | diego |
---|---|
date | Wed, 14 Mar 2007 08:55:06 +0000 |
parents | 42bd84f21090 |
children | d3f9def2f3e7 |
rev | line source |
---|---|
22546 | 1 include ../config.mak |
3991 | 2 |
22547
9193e4b4834f
cosmetics: Rename variables for consistency with other Makefiles.
diego
parents:
22546
diff
changeset
|
3 LIBNAME_MPLAYER = libvidix.a |
3991 | 4 |
22547
9193e4b4834f
cosmetics: Rename variables for consistency with other Makefiles.
diego
parents:
22546
diff
changeset
|
5 SRCS_MPLAYER = vidixlib.c |
3991 | 6 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
7 all: libs |
17958
ac071d4aafd2
Don't call make from shell constructs it prevent proper
albeu
parents:
17488
diff
changeset
|
8 $(MAKE) -C drivers |
4030 | 9 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
10 clean:: |
17958
ac071d4aafd2
Don't call make from shell constructs it prevent proper
albeu
parents:
17488
diff
changeset
|
11 $(MAKE) -C drivers clean |
3991 | 12 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
13 distclean:: |
17958
ac071d4aafd2
Don't call make from shell constructs it prevent proper
albeu
parents:
17488
diff
changeset
|
14 $(MAKE) -C drivers distclean |
3991 | 15 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
16 dep depend:: |
21080 | 17 $(MAKE) -C drivers depend |
3991 | 18 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
19 include ../mpcommon.mak |