Subversion Repositories shark

Rev

Rev 469 | 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\
470 giacomo 14
	vga16fb.o vgastate.o vesafb.o shark_fb26.o
466 giacomo 15
 
16
OTHERINCL += -I$(BASE)/drivers/linuxc26/include
17
 
468 giacomo 18
C_OPT += -D__KERNEL__ -D__i386__ -DCONFIG_FB_VGA16
466 giacomo 19
 
20
include $(BASE)/config/lib.mk
21
 
22
clean::
23
	rm -f $(OBJS)
24