Subversion Repositories shark

Rev

Rev 253 | Rev 324 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
221 giacomo 1
# The Frame Buffer Device
2
 
3
ifndef BASE
4
BASE=../..
5
endif
6
 
7
include $(BASE)/config/config.mk
8
 
9
LIBRARY       = first
10
 
11
OBJS_PATH     = $(BASE)/ports/first
12
 
13
FIRST = first-contract.o first-server.o first-sync.o \
253 giacomo 14
	./modules/grubstar.o ./modules/posixstar.o \
263 giacomo 15
        ./modules/edfstar.o ./modules/cbsstar.o ./modules/rmstar.o
221 giacomo 16
 
17
OBJS = $(FIRST)
18
 
19
C_OPT += -I./include -I. -I..
20
 
21
include $(BASE)/config/lib.mk
22