Mercurial > mplayer.hg
view drivers/Makefile @ 25523:47a9e9cccebb
Remove redundant extern declarations, fixes the warnings:
vo_vesa.c:55: warning: redundant redeclaration of #monitor_hfreq_str#
video_out.h:252: warning: previous declaration of #monitor_hfreq_str# was here
vo_vesa.c:56: warning: redundant redeclaration of #monitor_vfreq_str#
video_out.h:253: warning: previous declaration of #monitor_vfreq_str# was here
vo_vesa.c:57: warning: redundant redeclaration of #monitor_dotclock_str#
video_out.h:254: warning: previous declaration of #monitor_dotclock_str# was here
author | diego |
---|---|
date | Sun, 30 Dec 2007 12:12:47 +0000 |
parents | c162f47fdae3 |
children | fa1161425445 |
line wrap: on
line source
KERNEL_INC = /lib/modules/`uname -r`/build/include VERSION = $(shell grep RELEASE $(KERNEL_INC)/linux/version.h | cut -d'"' -f2) MDIR = /lib/modules/$(VERSION)/misc CFLAGS = -O2 -D__KERNEL__ -DMODULE -Wall -I$(KERNEL_INC) \ -include $(KERNEL_INC)/linux/modversions.h OBJS = mga_vid.o tdfx_vid.o radeon_vid.o rage128_vid.o all: $(OBJS) mga_vid_test tdfx_vid_test mga_vid.o: mga_vid.c mga_vid.h tdfx_vid.o: tdfx_vid.c 3dfx.h radeon_vid.o: radeon_vid.c radeon.h radeon_vid.h rage128_vid.o: radeon_vid.c radeon.h radeon_vid.h $(CC) $(CFLAGS) -DRAGE128 -c $< -o $@ radeon_vid.o rage128_vid.o: CFLAGS += -fomit-frame-pointer -fno-strict-aliasing -fno-common -ffast-math install: -mkdir -p $(MDIR) install -m 644 $(OBJS) $(MDIR) depmod -a -mknod /dev/mga_vid c 178 0 -mknod /dev/tdfx_vid c 178 0 -mknod /dev/radeon_vid c 178 0 -ln -s /dev/radeon_vid /dev/rage128_vid dep depend: clean: rm -f *.o *~ mga_vid_test tdfx_vid_test distclean: clean .PHONY: all install dep depend clean distclean