Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 631 → Rev 632

/shark/trunk/config/libdep.mk
20,20 → 20,6
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__)
45,6 → 31,8
LIB_DEP += $(LIB_PATH)/libpci.a
endif
 
endif
 
# newnet
ifeq ($(LIB_PATH)/libnewnet.a,$(wildcard $(LIB_PATH)/libnewnet.a))
LINK_LIB += -lnewnet
51,22 → 39,6
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
193,7 → 165,7
LIB_DEP += $(LIB_PATH)/libc.a
endif
 
# linuxComp
# Linux Comp 2.6
# ----------------------------------------------------------------
ifeq ($(findstring __LINUXC26__,$(USELIB)) , __LINUXC26__)
205,15 → 177,7
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
436,20 → 400,6
 
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__)