Ignore:
Timestamp:
2010-04-21T18:56:55+12:00 (14 years ago)
Author:
ak19
Message:

Matches the win32.mak of recpt: doesn't compile up oaserver.cgi for LOCAL_LIBRARY.

File:
1 edited

Legend:

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

    r21435 r21931  
    188188
    189189
    190 # Default target: make the oaiserver executable
     190# Default target: compile up .obj files only if LOCAL_LIBRARY is set, otherwise both obj files and oaiserver.cgi
     191!IF $(LOCAL_LIBRARY)
     192all: $(EXECUTABLE_OBJECTS)
     193!ELSE
    191194all: $(EXECUTABLE)
     195!ENDIF
    192196
    193197oaiserver.cgi: $(EXECUTABLE_OBJECTS)
    194198    $(LINK) $(EXECUTABLE_OBJECTS) $(LIBS)
    195199
     200!IF $(LOCAL_LIBRARY)
     201install:
     202!ELSE
    196203install: $(EXECUTABLE)
    197204    copy $(EXECUTABLE) "$(GSDL_DIR)\cgi-bin"
     205!ENDIF
    198206
    199207clean:
Note: See TracChangeset for help on using the changeset viewer.