Subversion Repositories shark

Rev

Rev 476 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
466 giacomo 1
# Frame Buffer Linux 2.6 Driver
2
 
3
ifndef BASE
4
BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = fb
10
 
11
OBJS_PATH     = $(BASE)/drivers/fb
12
 
468 giacomo 13
OBJS = fbmem.o fbcmap.o cfbfillrect.o softcursor.o cfbcopyarea.o cfbimgblt.o\
477 giacomo 14
	modedb.o vga16fb.o vgastate.o vesafb.o radeonfb.o shark_fb26.o gdvesa.o\
476 giacomo 15
	logo.o logo_bmp.o ./riva/fbdev.o ./riva/nv_driver.o ./riva/riva_hw.o
466 giacomo 16
 
477 giacomo 17
OTHERINCL += -I$(BASE)/drivers/linuxc26/include -I.
466 giacomo 18
 
477 giacomo 19
C_OPT += -D__KERNEL__ -D__i386__ -DCONFIG_FB_VESA -DCONFIG_LOGO
466 giacomo 20
 
21
include $(BASE)/config/lib.mk
22
 
23
clean::
24
	rm -f $(OBJS)
25