# This is the dmake version. # copied from settings.mk SOLARBINDIR=$(SOLARVERSION)$/$(INPATH)$/bin$(UPDMINOREXT) # Please modify the following lines to match your environment: # If you use the run: target at the end of the file, then adapt port number. PORT_NUMBER = 5678 # The following variables probably don't need to be changed. JAVAC = javac JAVA = java # The JAR_PATH points to the jar files of your local office installation. JAR_PATH = $(SOLARBINDIR)$/ # The rest of this makefile should not need to be touched. all : AccessibilityWorkBench JAR_FILES = \ unoil.jar \ ridl.jar \ jurt.jar \ juh.jar \ java_uno.jar JAVA_FILES = \ AccTreeNode.java \ AccessibilityTree.java \ AccessibilityTreeModel.java \ AccessibilityTreeModelBase.java \ AccessibilityWorkBench.java \ AccessibleActionHandler.java \ AccessibleActionNode.java \ AccessibleCellHandler.java \ AccessibleComponentHandler.java \ AccessibleContextHandler.java \ AccessibleEditableTextHandler.java \ AccessibleExtendedComponentHandler.java \ AccessibleHyperlinkHandler.java \ AccessibleHypertextHandler.java \ AccessibleImageHandler.java \ AccessibleRelationHandler.java \ AccessibleSelectionHandler.java \ AccessibleTableHandler.java \ AccessibleTextHandler.java \ AccessibleTreeCellRenderer.java \ AccessibleTreeHandler.java \ AccessibleTreeNode.java \ AccessibleUNOHandler.java \ Canvas.java \ CanvasShape.java \ ChildEventHandler.java \ ContextEventHandler.java \ EventHandler.java \ EventListener.java \ EventLogger.java \ EventQueue.java \ FrameActionListener.java \ GeometryEventHandler.java \ HelpWindow.java \ InformationWriter.java \ MessageArea.java \ NodeFactory.java \ NodeHandler.java \ NodeMap.java \ OfficeConnection.java \ Options.java \ QueuedListener.java \ QueuedTopWindowListener.java \ SelectionDialog.java \ SimpleOffice.java \ StringNode.java \ TableEventHandler.java \ TextLogger.java \ TextUpdateListener.java \ TopWindowListener.java \ VectorNode.java JAVA_CLASSPATHS := \ . \ $(foreach,i,$(JAR_FILES) $(JAR_PATH)$i) \ $(CLASSPATH) CLASSPATH !:=$(JAVA_CLASSPATHS:t$(PATH_SEPERATOR)) JFLAGS = -deprecation -classpath $(CLASSPATH) %.class : %.java +$(JAVAC) $(JFLAGS) $< %.class : %.java +$(JAVAC) $(JFLAGS) $< AccessibilityWorkBench : ObjectView Tools $(JAVA_FILES:b:+".class") ObjectView .SETDIR=ov : @echo "making package ObjectView" dmake Tools .SETDIR=tools : @echo "making package Tools" dmake # Remove all class files. clean : ObjectView.clean Tools.clean rm *.class rm AccessibilityWorkBench.jar ObjectView.clean .SETDIR=ov : rm *.class Tools.clean .SETDIR=tools : rm *.class # Create a jar file of all files neccessary to build and run the work bench. dist: AccessibilityWorkBench.jar AccessibilityWorkBench.jar: $(JAVA_FILES:b:+".class") jawb.mf +jar -cfm AccessibilityWorkBench.jar jawb.mf *.class ov\*.class tools\*.class # Example of how to run the work bench. run: all +$(JAVA) -classpath $(CLASSPATH) AccessibilityWorkBench -p $(PORT_NUMBER) runjar: all dist +$(JAVA) -classpath $(CLASSPATH) -jar AccessibilityWorkBench.jar -p $(PORT_NUMBER) p-4.2'>distro/collabora/cp-4.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/Makefile.in
AgeCommit message (Expand)Author
2016-04-14149Tor Lillqvist
2016-03-04remove unopkg script from MacOSX folder of sandboxed appAndras Timar
2016-03-04create empty .lproj directories for languages supported by OS XAndras Timar
2016-03-04Remove potential old leftover before moving the app bundleTor Lillqvist
2016-03-04Skip some executables in the OS X sandboxed (Mac App Store) caseTor Lillqvist
2016-03-03Unzip the InfoPlist.strings files into correct locationsTor Lillqvist
2016-03-03We don't want those bin/InfoPlist_*.zip files in the app bundleTor Lillqvist
2016-02-24Avoid quoting nonsense on WindowsStephan Bergmann
2016-01-28improve distclean for cross-compilePeter Foley
2016-01-07configure: hard-code /usr/bin/{sort,find} for CygwinMichael Stahl
2016-01-05Fix typosAndrea Gelmini
2015-11-27tdf#84628 Generated eclipse setting file for per module.Gulsah Kose
2015-10-19android/source/AndroidManifest.xml is not generated during the buildStephan Bergmann
2015-10-11migrate android build to gradleChristian Lohmaier
2015-10-02Remove setting Make SHELL completely from the build systemStephan Bergmann
2015-10-02Clean up Make SHELL handlingStephan Bergmann
2015-08-11gbuild/config stop using VERBOSE, use only verbose=tNorbert Thiebaud