Mercurial > mplayer.hg
view libdha/kernelhelper/Makefile @ 22324:475c60dcd459
10, checked for the wrong thing. Do aspect scaling only in config_video_out
if the vo responds that it supports this scheme by providing VOCTRL_UPDATE_SCREENINFO.
Fixes vo_xmga
author | reimar |
---|---|
date | Sun, 25 Feb 2007 14:35:53 +0000 |
parents | 618d1857f4c4 |
children | 43c482cba0fb |
line wrap: on
line source
KERNEL_INCLUDES = /usr/src/linux/include INCLUDES = -I$(KERNEL_INCLUDES) CFLAGS = -O2 -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2) MDIR = /lib/modules/$(VERSION)/misc all: dhahelper.o test dhahelper.o: dhahelper.c dhahelper.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c test: test.c $(CC) -O $(INCLUDES) -o $@ $@.c install: dhahelper.o -mkdir -p $(MDIR) install -m 644 dhahelper.o $(MDIR)/dhahelper.o depmod -a dep depend: clean: rm -f *.o *~ distclean: clean rm -f test