xref: /aoo4110/main/extensions/test/pgp/makefile.mk (revision b1cdbd2c)
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
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22
23
24
25
26PRJ=..$/..
27
28PRJNAME := extensions
29#PACKAGE := com$/sun$/star$/pgp
30PACKAGE :=
31TARGET  := test_com_sun_star_pgp
32
33
34# --- Settings -----------------------------------------------------
35.INCLUDE :  settings.mk
36
37
38# Files --------------------------------------------------------
39
40
41APPLICATRDB := $(SOLARBINDIR)$/applicat.rdb
42RDB := $(APPLICATRDB)
43
44JARFILES= jurt.jar
45
46GENJAVACLASSFILES= \
47	$(CLASSDIR)$/com$/sun$/star$/beans$/PropertyValue.class				\
48	$(CLASSDIR)$/com$/sun$/star$/beans$/PropertyState.class				\
49	$(CLASSDIR)$/com$/sun$/star$/container$/XSet.class				\
50
51
52#$(CLASSDIR)$/com$/sun$/star$/awt$/FocusEvent.class
53
54#	$(CLASSDIR)$/com$/sun$/star$/awt$/InputEvent.class					\
55#	$(CLASSDIR)$/com$/sun$/star$/awt$/KeyEvent.class					\
56#	$(CLASSDIR)$/com$/sun$/star$/awt$/MouseEvent.class					\
57#	$(CLASSDIR)$/com$/sun$/star$/awt$/WindowEvent.class					\
58#	$(CLASSDIR)$/com$/sun$/star$/awt$/PaintEvent.class					\
59#	$(CLASSDIR)$/com$/sun$/star$/awt$/Rectangle.class					\
60#	$(CLASSDIR)$/com$/sun$/star$/awt$/XFocusListener.class				\
61#	$(CLASSDIR)$/com$/sun$/star$/awt$/XKeyListener.class				\
62#	$(CLASSDIR)$/com$/sun$/star$/awt$/XMouseListener.class				\
63#	$(CLASSDIR)$/com$/sun$/star$/awt$/XMouseMotionListener.class		\
64#	$(CLASSDIR)$/com$/sun$/star$/awt$/XWindow.class						\
65#	$(CLASSDIR)$/com$/sun$/star$/awt$/XWindowListener.class				\
66#	$(CLASSDIR)$/com$/sun$/star$/awt$/XPaintListener.class				\
67#	$(CLASSDIR)$/com$/sun$/star$/bridge$/XBridge.class					\
68#	$(CLASSDIR)$/com$/sun$/star$/container$/XIndexAccess.class			\
69#	$(CLASSDIR)$/com$/sun$/star$/frame$/FrameAction.class				\
70#	$(CLASSDIR)$/com$/sun$/star$/frame$/FrameActionEvent.class			\
71#	$(CLASSDIR)$/com$/sun$/star$/frame$/XComponentLoader.class			\
72#	$(CLASSDIR)$/com$/sun$/star$/frame$/XController.class				\
73#	$(CLASSDIR)$/com$/sun$/star$/frame$/XFrame.class					\
74#	$(CLASSDIR)$/com$/sun$/star$/frame$/XFrameActionListener.class		\
75#	$(CLASSDIR)$/com$/sun$/star$/frame$/XFrames.class					\
76#	$(CLASSDIR)$/com$/sun$/star$/frame$/XFramesSupplier.class			\
77#	$(CLASSDIR)$/com$/sun$/star$/frame$/XModel.class					\
78#	$(CLASSDIR)$/com$/sun$/star$/io$/BufferSizeExceededException.class	\
79#	$(CLASSDIR)$/com$/sun$/star$/io$/NotConnectedException.class		\
80#	$(CLASSDIR)$/com$/sun$/star$/io$/XInputStream.class					\
81#	$(CLASSDIR)$/com$/sun$/star$/io$/XOutputStream.class				\
82#	$(CLASSDIR)$/com$/sun$/star$/lang$/IndexOutOfBoundsException.class	\
83#	$(CLASSDIR)$/com$/sun$/star$/lang$/XComponent.class					\
84#	$(CLASSDIR)$/com$/sun$/star$/lang$/XMultiServiceFactory.class		\
85#	$(CLASSDIR)$/com$/sun$/star$/lang$/XServiceInfo.class				\
86#	$(CLASSDIR)$/com$/sun$/star$/text$/XSimpleText.class				\
87#	$(CLASSDIR)$/com$/sun$/star$/text$/XText.class						\
88#	$(CLASSDIR)$/com$/sun$/star$/text$/XTextContent.class				\
89#	$(CLASSDIR)$/com$/sun$/star$/text$/XTextCursor.class				\
90#	$(CLASSDIR)$/com$/sun$/star$/text$/XTextDocument.class				\
91#	$(CLASSDIR)$/com$/sun$/star$/text$/XTextRange.class					\
92#	$(CLASSDIR)$/com$/sun$/star$/uno$/XNamingService.class		\
93#	$(CLASSDIR)$/com$/sun$/star$/uno$/Enum.class
94
95
96JAVACLASSFILES= \
97	$(CLASSDIR)$/$(PACKAGE)$/TestPGP.class
98
99
100TYPES={$(subst,.class, $(subst,$/,.  $(subst,$(CLASSDIR)$/,-T  $(GENJAVACLASSFILES))))}
101GENJAVAFILES = {$(subst,.class,.java $(subst,$/class, $(GENJAVACLASSFILES)))}
102JAVAFILES= $(subst,$(CLASSDIR)$/$(PACKAGE)$/, $(subst,.class,.java $(JAVACLASSFILES))) $(GENJAVAFILES)
103
104
105# --- Targets ------------------------------------------------------
106
107
108.IF "$(depend)" == ""
109ALL : $(GENJAVAFILES) ALLTAR
110.ELSE
111ALL: ALLDEP
112.ENDIF
113
114.INCLUDE :  target.mk
115
116$(GENJAVAFILES) : $(RDB)
117#	javamaker -BUCR -O$(OUT) $(TYPES) $(RDB)
118	javamaker @$(mktmp -BUCR -O$(OUT) $(TYPES) $(RDB))
119
120$(JAVACLASSFILES) : $(GENJAVAFILES)
121