view drivers/radeon/Makefile @ 2870:f46c5556f1e6

radeon_vid: it's in first pre-alpha stage Note: it's not public release and not test version. It's simplest commit of unfinished and not working stuff in hope to attract other developer to this driver. (What is good: this driver is removable from driver list and doesn't cause segfault !!!)
author nick
date Tue, 13 Nov 2001 17:20:47 +0000
parents d323a65c8f6b
children 3c5ad8d5ac00
line wrap: on
line source

KERNEL_INCLUDES = /usr/src/linux/include
INCLUDES = -I$(KERNEL_INCLUDES)

#
# standard CFLAGS
#

CPPFLAGS := -D__KERNEL__ -I$(KERNEL_INCLUDES)

CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \
	-fomit-frame-pointer -fno-strict-aliasing -fno-common\
	-D__KERNEL__  -DMODULE  -include $(KERNEL_INCLUDES)/linux/modversions.h
AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS)


all: radeonfb.o radeon_vid.o

radeonfb.o: radeonfb.c radeon.h
	$(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c
radeon_vid.o: radeon_vid.c radeon.h radeon_vid.h
	$(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c

dep:

clean: 
	rm -f *.o *~

install:
	@echo Please copy *.o files to '/lib/modules/LINUX_VER/kernel/drivers/video' folder