Subversion Repositories shark

Rev

Rev 235 | Go to most recent revision | Details | 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 \
14
	./modules/cbsstar.o ./modules/posixstar.o ./modules/posix.o \
15
        ./modules/edfstar.o
16
 
17
OBJS = $(FIRST)
18
 
19
C_OPT += -I./include -I. -I..
20
 
21
include $(BASE)/config/lib.mk
22