summaryrefslogtreecommitdiffstats
path: root/vidix/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-01 00:02:43 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-01 00:02:43 +0000
commit9b7f5e81c685e0bfdac857fbda10d922c967df94 (patch)
tree0be59dad1eb49d56ee5419bff63c7db79dfefe94 /vidix/Makefile
parentb6d1ff3eeca58a0b5493b2a06a0040d161986709 (diff)
downloadmpv-9b7f5e81c685e0bfdac857fbda10d922c967df94.tar.bz2
mpv-9b7f5e81c685e0bfdac857fbda10d922c967df94.tar.xz
Move driver files directly into the vidix directory.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22868 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix/Makefile')
-rw-r--r--vidix/Makefile13
1 files changed, 5 insertions, 8 deletions
diff --git a/vidix/Makefile b/vidix/Makefile
index 0ee4a8875d..b05b3b4fe2 100644
--- a/vidix/Makefile
+++ b/vidix/Makefile
@@ -3,18 +3,15 @@ include ../config.mak
LIBNAME_MPLAYER = libvidix.a
SRCS_MPLAYER = vidixlib.c \
- $(wildcard drivers/*.c)
+ $(wildcard *.c)
-OBJS_MPLAYER = drivers/mga_crtc2_vid.o \
- drivers/rage128_vid.o \
+OBJS_MPLAYER = mga_crtc2_vid.o \
+ rage128_vid.o \
include ../mpcommon.mak
-drivers/mga_crtc2_vid.o: drivers/mga_vid.c
+mga_crtc2_vid.o: mga_vid.c
$(CC) -c $(CFLAGS) -DCRTC2 -o $@ $<
-drivers/rage128_vid.o: drivers/radeon_vid.c
+rage128_vid.o: radeon_vid.c
$(CC) -c $(CFLAGS) -DRAGE128 -o $@ $<
-
-clean::
- rm -f drivers/*.o drivers/*~