Ignore:
Timestamp:
2009-12-18T15:15:39+13:00 (14 years ago)
Author:
ak19
Message:

The win32.mak of gs2build and greenstone2 are the same, so that they can just be obtained from one source in future.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/win32.mak

    r21366 r21379  
    2727GSDLHOME = $(MAKEDIR)
    2828GSDL_VC4 = 0
     29# It only ever makes sense for GS2 to turn on LOCAL_LIBRARY and APACHE_HTTPD if needed
    2930LOCAL_LIBRARY = 0
    3031APACHE_HTTPD = 0
     
    3233DLL = 0
    3334DLLDEBUG = 0
     35# USE_SQLITE is enabled by default for GS2. Need to turn off explicitly for GS3 in build.xml
    3436USE_SQLITE = 1
     37# It only ever makes sense for GS2 to turn on MSSQL if needed
    3538USE_MSSQL = 0
    3639USE_Z3950 = 0
     
    4043ENABLE_MGPP = 1
    4144ENABLE_LUCENE = 1
    42 # jni is disabled by default as this is the default for GS2
     45# jni is disabled by default as this is the default for GS2. GS3 will set this explicitly
    4346ENABLE_JNI = 0
    4447
     
    4649MDEFINES = /f win32.mak
    4750
    48 INSTALLDIRS = common-src build-src runtime-src
     51INSTALLDIRS = common-src build-src
     52!IF EXIST ("runtime-src")
     53INSTALLDIRS = $(INSTALLDIRS) runtime-src
     54!ENDIF
    4955
    5056
     
    114120    $(MAKECLEANCMD)
    115121    cd "$(GSDLHOME)"
     122!IF EXIST ("runtime-src")
    116123    cd runtime-src
    117124    $(MAKECLEANCMD)
    118125    cd "$(GSDLHOME)"
     126!ENDIF
    119127
    120128$(INSTALLDIRS): FORCE
Note: See TracChangeset for help on using the changeset viewer.