Ignore:
Timestamp:
2010-09-01T10:36:46+12:00 (14 years ago)
Author:
mdewsnip
Message:

Lots of makefile tidy ups (both Windows and Linux), for consistency and flexibility.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/runtime-src/src/oaiservr/win32.mak

    r22763 r22824  
    1010
    1111
    12 GSDL_DIR = $(GSDLHOME)
     12RUNTIME_SRC_DIR = ..\..
     13GSDL_DIR = $(RUNTIME_SRC_DIR)\..
    1314
    1415
     
    4950
    5051OAISERVER_CGI_LDADD = \
    51     "$(GSDL_DIR)\runtime-src\src\protocol\gsdlprotocol.lib" \
    52     "$(GSDL_DIR)\runtime-src\src\colservr\gsdlcolservr.lib" \
    53     "$(GSDL_DIR)\common-src\src\lib\gsdllib.lib"
     52    "$(GSDL_DIR)\runtime-src\src\protocol\libgsdlprotocol.lib" \
     53    "$(GSDL_DIR)\runtime-src\src\colservr\libgsdlcolservr.lib" \
     54    "$(GSDL_DIR)\common-src\src\lib\libgsdllib.lib"
    5455
    55 
    56 # Option: Lucene support
     56# Option: Lucene support (enabled by default)
     57ENABLE_LUCENE = 1
    5758!IF $(ENABLE_LUCENE)
    5859OAISERVER_CGI_LDADD = $(OAISERVER_CGI_LDADD) "$(GSDL_DIR)\common-src\packages\expat\lib\libexpat.lib"
    5960!ENDIF
    6061
    61 # Option: SQLite support
     62# Option: SQLite support (enabled by default)
     63USE_SQLITE = 1
    6264!IF $(USE_SQLITE)
    6365OAISERVER_CGI_LDADD = $(OAISERVER_CGI_LDADD) "$(GSDL_DIR)\common-src\packages\sqlite\lib\sqlite3.lib"
Note: See TracChangeset for help on using the changeset viewer.