Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 110 → Rev 107

/shark/trunk/config/libdep.mk
21,6 → 21,12
endif
 
 
# --------------------------------------------------------------------------
# Library File names
ifndef GRAPH_DRV
GRAPH_DRV=grx
endif
 
# PXC (Framegrabber)
# ----------------------------------------------------------------
ifeq ($(findstring __PXC__,$(USELIB)) , __PXC__)
47,19 → 53,13
endif
 
# grx
# ----------------------------------------------------------------
ifeq ($(findstring __GRX__,$(USELIB)) , __GRX__)
 
INCL += -I$(BASE)/drivers/grx/include
 
ifeq ($(LIB_PATH)/libgrx.a,$(wildcard $(LIB_PATH)/libgrx.a))
ifeq ($(GRAPH_DRV),grx)
LINK_LIB += -lgrx
LIB_DEP += $(LIB_PATH)/libgrx.a
endif
 
endif
 
 
# oldchar
# ----------------------------------------------------------------
ifeq ($(findstring __OLDCHAR__,$(USELIB)) , __OLDCHAR__)
196,19 → 196,13
endif
 
# SVGA
# ----------------------------------------------------------------
ifeq ($(findstring __SVGA__,$(USELIB)) , __SVGA__)
 
INCL += -I$(BASE)/drivers/svga/include
 
ifeq ($(LIB_PATH)/libsvga.a,$(wildcard $(LIB_PATH)/libsvga.a))
ifeq ($(GRAPH_DRV),svga)
LINK_LIB += -lsvga
LIB_DEP += $(LIB_PATH)/libsvga.a
endif
 
endif
 
 
# PCLAB
# ----------------------------------------------------------------
ifeq ($(findstring __PCLAB__,$(USELIB)) , __PCLAB__)