comparison drivers/Makefile @ 22777:d1670ab86597

cosmetics: Shorten overly long lines.
author diego
date Sat, 24 Mar 2007 13:12:55 +0000
parents 544914dadb52
children c162f47fdae3
comparison
equal deleted inserted replaced
22776:0d4052c65c0c 22777:d1670ab86597
1 KERNEL_INCLUDES = /lib/modules/`uname -r`/build/include 1 KERNEL_INC = /lib/modules/`uname -r`/build/include
2 VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2) 2 VERSION = $(shell grep RELEASE $(KERNEL_INC)/linux/version.h | cut -d'"' -f2)
3 MDIR = /lib/modules/$(VERSION)/misc 3 MDIR = /lib/modules/$(VERSION)/misc
4 4
5 CFLAGS = -O2 -D__KERNEL__ -DMODULE -I$(KERNEL_INCLUDES) -Wall -include $(KERNEL_INCLUDES)/linux/modversions.h 5 CFLAGS = -O2 -D__KERNEL__ -DMODULE -Wall -I$(KERNEL_INC) \
6 -include $(KERNEL_INC)/linux/modversions.h
6 7
7 OBJS = mga_vid.o tdfx_vid.o radeon_vid.o rage128_vid.o 8 OBJS = mga_vid.o tdfx_vid.o radeon_vid.o rage128_vid.o
8 9
9 all: $(OBJS) mga_vid_test tdfx_vid_test 10 all: $(OBJS) mga_vid_test tdfx_vid_test
10 11