| makefile.mk (7871dc3e) | makefile.mk (7fb4469b) |
|---|---|
| 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 22 unchanged lines hidden (view full) --- 31 32.INCLUDE : settings.mk 33.INCLUDE : antsettings.mk 34# --- Files -------------------------------------------------------- 35 36.IF "$(SOLAR_JAVA)" != "" 37 38LUCENE_MAJOR=2 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 22 unchanged lines hidden (view full) --- 31 32.INCLUDE : settings.mk 33.INCLUDE : antsettings.mk 34# --- Files -------------------------------------------------------- 35 36.IF "$(SOLAR_JAVA)" != "" 37 38LUCENE_MAJOR=2 |
| 39LUCENE_MINOR=3 40LUCENE_MICRO=2 | 39LUCENE_MINOR=9 40LUCENE_MICRO=4 |
| 41 42LUCENE_NAME=lucene-$(LUCENE_MAJOR).$(LUCENE_MINOR).$(LUCENE_MICRO) 43# NOTE that the jar names do not contain the micro version | 41 42LUCENE_NAME=lucene-$(LUCENE_MAJOR).$(LUCENE_MINOR).$(LUCENE_MICRO) 43# NOTE that the jar names do not contain the micro version |
| 44LUCENE_CORE_JAR=lucene-core-$(LUCENE_MAJOR).$(LUCENE_MINOR).jar 45LUCENE_ANALYZERS_JAR=lucene-analyzers-$(LUCENE_MAJOR).$(LUCENE_MINOR).jar | 44LUCENE_CORE_JAR=lucene-core-$(LUCENE_MAJOR).$(LUCENE_MINOR).$(LUCENE_MICRO)-dev.jar 45LUCENE_ANALYZERS_JAR=lucene-analyzers-$(LUCENE_MAJOR).$(LUCENE_MINOR).$(LUCENE_MICRO)-dev.jar |
| 46 | 46 |
| 47TARFILE_NAME=$(LUCENE_NAME) 48TARFILE_MD5=48d8169acc35f97e05d8dcdfd45be7f2 | 47TARFILE_NAME=$(LUCENE_NAME)-src 48TARFILE_MD5=17960f35b2239654ba608cf1f3e256b3 49TARFILE_ROOTDIR=$(LUCENE_NAME) 50 |
| 49PATCH_FILES=lucene.patch 50 | 51PATCH_FILES=lucene.patch 52 |
| 51.IF "$(OS)" == "WNT" 52PATCH_FILES+= long_path.patch 53.ENDIF 54 55 | |
| 56BUILD_DIR=. 57BUILD_ACTION= ${ANT} -buildfile .$/contrib$/analyzers$/build.xml 58 | 53BUILD_DIR=. 54BUILD_ACTION= ${ANT} -buildfile .$/contrib$/analyzers$/build.xml 55 |
| 59OUT2BIN=.$/build$/$(LUCENE_CORE_JAR) .$/build$/contrib$/analyzers$/$(LUCENE_ANALYZERS_JAR) | 56OUT2BIN=.$/build$/$(LUCENE_CORE_JAR) .$/build$/contrib$/analyzers/common$/$(LUCENE_ANALYZERS_JAR) |
| 60 61.ENDIF 62 63# --- Targets ------------------------------------------------------ 64 65.INCLUDE : set_ext.mk 66.INCLUDE : target.mk 67 68.IF "$(SOLAR_JAVA)" != "" 69.INCLUDE : tg_ext.mk 70.ENDIF | 57 58.ENDIF 59 60# --- Targets ------------------------------------------------------ 61 62.INCLUDE : set_ext.mk 63.INCLUDE : target.mk 64 65.IF "$(SOLAR_JAVA)" != "" 66.INCLUDE : tg_ext.mk 67.ENDIF |