Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 64 → Rev 48

/shark/trunk/config/mk/linux.mk
6,13 → 6,12
 
INCL = $(BASE)/include
LIB_PATH = $(BASE)/lib
OSLIB = $(BASE)/oslib
OSLIB_PATH = $(OSLIB)/lib
LIB_DIR = $(BASE)/lib
ifneq ($(OSLIB),)
OTHERINCL += -I$(OSLIB)
OTHERINCL = -I$(OSLIB)
else
OTHERINCL +=
OTHERINCL =
endif
 
LIBRARYPATHNAME= $(LIB_PATH)/lib$(LIBRARY).a
/shark/trunk/config/example.mk
5,6 → 5,9
.PHONY: test all install depend clean cleanall
.PHONY: $(PROGS)
 
#ifndef OSLIB
OSLIB=
#endif
SUBMAKE:=$(BASE)/config/example2.mk
 
test: $(PROGS)
/shark/trunk/config/example2.mk
2,6 → 2,9
ifndef BASE
BASE=../..
endif
ifndef OSLIB
OSLIB=$(BASE)/oslib
endif
 
include $(BASE)/config/config.mk