Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 580 → Rev 581

/shark/trunk/config/libdep.mk
45,6 → 45,12
LIB_DEP += $(LIB_PATH)/libnewpci.a
endif
 
# newnet
ifeq ($(LIB_PATH)/libnewnet.a,$(wildcard $(LIB_PATH)/libnewnet.a))
LINK_LIB += -lnewnet
LIB_DEP += $(LIB_PATH)/libnewnet.a
endif
 
else
 
# HPCI
471,3 → 477,17
endif
 
endif
 
# CPU
# ----------------------------------------------------------------
ifeq ($(findstring __CPU__, $(USELIB)), __CPU__)
 
INCL += -I$(BASE)/drivers/cpu/include
 
# CPU
ifeq ($(LIB_PATH)/libcpu.a,$(wildcard $(LIB_PATH)/libcpu.a))
LINK_LIB += -lcpu
LINK_DEP += $(LIB_PATH)/libcpu.a
endif
 
endif