Ignore:
Timestamp:
2013-10-10T00:28:10+13:00 (11 years ago)
Author:
davidb
Message:

Changes that help using javac in Make fiels when compiling up Greenstone with Cygwin on Windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/src/jdbmedit/Makefile.in

    r23356 r28370  
    2121
    2222%.class: %.java
     23ifeq ($(GSDLOS), "windows")
     24# for cygwin with a native Windows java compiler
     25    $(JAVAC) $(JAVACFLAGS) -classpath "$(JDBM_JAR);." $<
     26else
    2327    $(JAVAC) $(JAVACFLAGS) -classpath $(JDBM_JAR):. $<
    24 
     28endif
    2529
    2630clean:
Note: See TracChangeset for help on using the changeset viewer.