Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | # The Graphic library |
2 | |||
3 | ifndef BASE |
||
4 | BASE=../.. |
||
5 | endif |
||
6 | include $(BASE)/config/config.mk |
||
7 | |||
8 | #C_OPT += -DVM86 |
||
9 | LIBRARY = grx |
||
10 | |||
11 | OBJS_PATH = $(BASE)/drivers/grx |
||
12 | |||
13 | OBJS = gd.o glib.o palette.o drivers/gdvesa.o drivers/gds3.o drivers/gdtrid.o drawfun/fun8.o drawfun/fun16.o |
||
14 | |||
15 | #vpath %.c drivers drawfun . |
||
16 | |||
17 | #OTHERINCL = -I$(BASE)/include/drivers |
||
18 | |||
19 | include $(BASE)/config/lib.mk |
||
20 | |||
21 | GRXDIRS := drawfun drivers |
||
22 | GRXOBJS := $(foreach DIR,$(GRXDIRS),$(wildcard $(DIR)/*.o)) |
||
23 | |||
24 | clean:: |
||
25 | rm -f $(GRXOBJS) |