Mercurial > mplayer.hg
annotate vidix/Makefile @ 22850:9a1e26fef45b
Move driver files directly into the vidix directory.
author | diego |
---|---|
date | Sun, 01 Apr 2007 00:02:43 +0000 |
parents | bddb09395c3e |
children | a9e111b88c4a |
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 |
22849 | 5 SRCS_MPLAYER = vidixlib.c \ |
22850
9a1e26fef45b
Move driver files directly into the vidix directory.
diego
parents:
22849
diff
changeset
|
6 $(wildcard *.c) |
22849 | 7 |
22850
9a1e26fef45b
Move driver files directly into the vidix directory.
diego
parents:
22849
diff
changeset
|
8 OBJS_MPLAYER = mga_crtc2_vid.o \ |
9a1e26fef45b
Move driver files directly into the vidix directory.
diego
parents:
22849
diff
changeset
|
9 rage128_vid.o \ |
3991 | 10 |
22549
77f632d4ca36
Reuse common parts of all Makefiles through mpcommon.mak.
diego
parents:
22548
diff
changeset
|
11 include ../mpcommon.mak |
22849 | 12 |
22850
9a1e26fef45b
Move driver files directly into the vidix directory.
diego
parents:
22849
diff
changeset
|
13 mga_crtc2_vid.o: mga_vid.c |
22849 | 14 $(CC) -c $(CFLAGS) -DCRTC2 -o $@ $< |
15 | |
22850
9a1e26fef45b
Move driver files directly into the vidix directory.
diego
parents:
22849
diff
changeset
|
16 rage128_vid.o: radeon_vid.c |
22849 | 17 $(CC) -c $(CFLAGS) -DRAGE128 -o $@ $< |