xref: /aoo41x/main/registry/tools/makefile.mk (revision cdf0e10c)
1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#
9# This file is part of OpenOffice.org.
10#
11# OpenOffice.org is free software: you can redistribute it and/or modify
12# it under the terms of the GNU Lesser General Public License version 3
13# only, as published by the Free Software Foundation.
14#
15# OpenOffice.org is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU Lesser General Public License version 3 for more details
19# (a copy is included in the LICENSE file that accompanied this code).
20#
21# You should have received a copy of the GNU Lesser General Public License
22# version 3 along with OpenOffice.org.  If not, see
23# <http://www.openoffice.org/license.html>
24# for a copy of the LGPLv3 License.
25#
26#*************************************************************************
27
28PRJ=..
29
30PRJNAME=registry
31TARGET=regmerge
32TARGETTYPE=CUI
33LIBTARGET=NO
34
35ENABLE_EXCEPTIONS := TRUE
36
37# --- Settings -----------------------------------------------------
38.INCLUDE :  settings.mk
39
40.INCLUDE :  ..$/version.mk
41
42# --- Files --------------------------------------------------------
43CDEFS += -DDLL_VERSION=$(EMQ)"$(DLLPOSTFIX)$(EMQ)"
44
45APP1TARGET= $(TARGET)
46APP1OBJS=   $(OBJ)$/regmerge.obj $(OBJ)/fileurl.obj $(OBJ)/options.obj
47APP1RPATH=  UREBIN
48
49APP1STDLIBS=\
50            $(SALLIB) \
51            $(REGLIB)
52
53APP2TARGET= regview
54APP2OBJS=   $(OBJ)$/regview.obj $(OBJ)/fileurl.obj
55APP2RPATH=  UREBIN
56
57APP2STDLIBS=\
58            $(SALLIB) \
59            $(REGLIB)
60
61APP3TARGET= regcompare
62APP3OBJS=   $(OBJ)$/regcompare.obj $(OBJ)/fileurl.obj $(OBJ)/options.obj
63APP3RPATH=  SDK
64
65APP3STDLIBS=\
66            $(SALLIB) \
67            $(SALHELPERLIB) \
68            $(REGLIB)
69
70APP4TARGET= checksingleton
71APP4OBJS=   $(OBJ)$/checksingleton.obj $(OBJ)/fileurl.obj $(OBJ)/options.obj
72
73APP4STDLIBS=\
74            $(SALLIB) \
75            $(SALHELPERLIB) \
76            $(REGLIB)
77
78APP5TARGET= rdbedit
79APP5OBJS=   $(OBJ)$/rdbedit.obj
80
81APP5STDLIBS=\
82            $(SALLIB) \
83            $(SALHELPERLIB) \
84            $(REGLIB)
85
86OBJFILES = $(APP1OBJS) $(APP2OBJS) $(APP3OBJS) $(APP4OBJS) $(APP5OBJS)
87
88.INCLUDE :  target.mk
89