Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 632 → Rev 631

/shark/trunk/config/libdep.mk
20,6 → 20,20
USELIB += __ZLIB__
endif
 
 
# PXC (Framegrabber)
# ----------------------------------------------------------------
ifeq ($(findstring __PXC__,$(USELIB)) , __PXC__)
 
INCL += -I$(BASE)/drivers/pxc/include
 
ifeq ($(LIB_PATH)/libhpxc.a,$(wildcard $(LIB_PATH)/libhpxc.a))
LINK_LIB += -lhpxc
LIB_DEP += $(LIB_PATH)/libhpxc.a
endif
 
endif
 
# PCI
# ----------------------------------------------------------------
ifeq ($(findstring __PCI__,$(USELIB)) , __PCI__)
31,8 → 45,6
LIB_DEP += $(LIB_PATH)/libpci.a
endif
 
endif
 
# newnet
ifeq ($(LIB_PATH)/libnewnet.a,$(wildcard $(LIB_PATH)/libnewnet.a))
LINK_LIB += -lnewnet
39,6 → 51,22
LIB_DEP += $(LIB_PATH)/libnewnet.a
endif
 
else
 
# OLDPCI
ifeq ($(LIB_PATH)/liboldpci.a,$(wildcard $(LIB_PATH)/liboldpci.a))
LINK_LIB += -loldpci
LIB_DEP += $(LIB_PATH)/liboldpci.a
endif
 
# hnet
ifeq ($(LIB_PATH)/libhnet.a,$(wildcard $(LIB_PATH)/libhnet.a))
LINK_LIB += -lhnet
LIB_DEP += $(LIB_PATH)/libhnet.a
endif
 
endif
 
# tracer
ifeq ($(LIB_PATH)/libtracer.a,$(wildcard $(LIB_PATH)/libtracer.a))
LINK_LIB += -ltracer
165,7 → 193,7
LIB_DEP += $(LIB_PATH)/libc.a
endif
 
# Linux Comp 2.6
# linuxComp
# ----------------------------------------------------------------
ifeq ($(findstring __LINUXC26__,$(USELIB)) , __LINUXC26__)
177,7 → 205,15
LIB_DEP += $(LIB_PATH)/libcomp26.a
endif
 
else
 
# comp
ifeq ($(LIB_PATH)/libcomp.a,$(wildcard $(LIB_PATH)/libcomp.a))
LINK_LIB += -lcomp
LIB_DEP += $(LIB_PATH)/libcomp.a
endif
 
endif
# ----------------------------------------------------------------
 
# mpeg
400,6 → 436,20
 
endif
 
# JOY
# ----------------------------------------------------------------
ifeq ($(findstring __JOY__, $(USELIB)), __JOY__)
 
INCL += -I$(BASE)/drivers/joy/include
 
# JOY
ifeq ($(LIB_PATH)/libjoy.a,$(wildcard $(LIB_PATH)/libjoy.a))
LINK_LIB += -ljoy
LINK_DEP += $(LIB_PATH)/libjoy.a
endif
 
endif
 
# INPUT
# ----------------------------------------------------------------
ifeq ($(findstring __INPUT__, $(USELIB)), __INPUT__)