diff options
| author | Pixel <pixel@nobis-crew.org> | 2009-05-16 01:05:42 -0700 | 
|---|---|---|
| committer | Pixel <pixel@nobis-crew.org> | 2009-05-16 01:05:42 -0700 | 
| commit | 538414ea2e5e7e9edcf86b4431c8e194ebd405df (patch) | |
| tree | 1aac1768632fd3264b8f8a39411acbfafe5b1e29 /Makefile | |
| parent | c1fe002b1cc743452514862a11d73a901e914a19 (diff) | |
Having oracle being optionnal.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 | 
1 files changed, 10 insertions, 3 deletions
| @@ -19,8 +19,9 @@ CC = gcc  CXX = g++  STRIP = strip +HAS_ORACLE=$(shell [ -d /usr/local/instantclient ] && echo true || echo false ]) +  INCLUDES = \ --I ../Mesa-7.2/include \  -I../mogltk/include \  -I../Baltisot/include \  -I../Baltisot/lib/zlib/include \ @@ -128,7 +129,6 @@ dds.c  WHOLE_SOURCES = \  $(CONFIGFILES_SOURCES) \  $(XML_SOURCES) \ -$(OCCI_SOURCES) \  $(HANDLE_SOURCES) \  $(HTTP_SOURCES) \  $(REGEX_SOURCES) \ @@ -139,10 +139,13 @@ $(GL_SOURCES) \  $(FTGL_SOURCES) \  $(OSMESA_SOURCES) \ +ifeq ($(HAVE_ORACLE),true) +WHOLE_SOURCES += $(OCCI_SOURCES) +endif +  MODULES_LIST = \  luaconfigfiles.$(SHARED_EXT) \  luaxml.$(SHARED_EXT) \ -luaocci.$(SHARED_EXT) \  luahandle.$(SHARED_EXT) \  luahttp.$(SHARED_EXT) \  luaregex.$(SHARED_EXT) \ @@ -153,6 +156,10 @@ luaftgl.$(SHARED_EXT) \  lualibs.$(SHARED_EXT) \  luaosmesa.$(SHARED_EXT) \ +ifeq ($(HAVE_ORACLE),true) +MODULES_LIST += luaocci.$(SHARED_EXT) +endif +  ALL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(WHOLE_SOURCES) $(LUA_LIB))))  ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(WHOLE_SOURCES)))) | 
