Rev 679 | 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 | |||
679 | trimarchi | 13 | FIRST = first-contract.o first-server.o first-sync.o server-task.o \ |
253 | giacomo | 14 | ./modules/grubstar.o ./modules/posixstar.o \ |
324 | giacomo | 15 | ./modules/edfstar.o ./modules/cbsstar.o ./modules/rmstar.o \ |
808 | trimarchi | 16 | ./modules/mpegstar.o ./modules/pistar.o |
221 | giacomo | 17 | |
18 | OBJS = $(FIRST) |
||
19 | |||
399 | giacomo | 20 | C_OPT += -I./include -I. -I.. |
221 | giacomo | 21 | |
22 | include $(BASE)/config/lib.mk |
||
23 |