xref: /aoo41x/main/sc/addin/rot13/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=sc
31TARGET=rot
32LIBTARGET=NO
33
34
35# --- Settings -----------------------------------------------------
36
37.INCLUDE: settings.mk
38
39CL2C=+$(PERL) $(MISC)$/cl2c.pl
40CL2CRID=RID_SC_ADDIN_ROT13
41CL2CSRC=$(TARGET)13.src
42
43# --- Files --------------------------------------------------------
44
45CFILES= $(MISC)$/x$(TARGET).c
46
47SLOFILES= \
48			$(SLO)$/x$(TARGET).obj
49
50# ==========================================================================
51
52SHL1TARGET= rot$(DLLPOSTFIX)
53SHL1IMPLIB= irot
54SHL1OBJS=   $(SLO)$/x$(TARGET).obj
55
56SHL1VERSIONMAP=exports.map
57SHL1DEF=$(MISC)$/$(SHL1TARGET).def
58DEF1NAME=$(SHL1TARGET)
59
60.IF "$(GUI)" == "WNT"
61SHL1STDLIBS=     $(GDI32LIB) $(ADVAPI32LIB) $(COMDLG32LIB) \
62				 $(UUIDLIB) $(OLE32LIB) $(SHELL32LIB) $(WINSPOOLLIB)
63.IF "$(GVER)" == "W40"
64SHL1STDLIBS=    $(SHL1STDLIBS) $(COMCTL32LIB)
65.ENDIF # W40
66.ENDIF # WNT
67
68# --- Targets -------------------------------------------------------
69
70ALLTAR:	$(MISC)$/rot.lst
71
72.INCLUDE: target.mk
73
74$(MISC)$/x$(TARGET).c: $(TARGET)13.cl $(CL2CSRC) $(MISC)$/cl2c.pl
75	$(CL2C) $(TARGET)13.cl $(MISC)$/x$(TARGET).c $(CL2CSRC) $(CL2CRID)
76
77# copy file to include in package
78$(INCCOM)$/xlang.h : $(SOLARINCDIR)$/i18npool$/lang.h
79	@$(COPY) $(SOLARINCDIR)$/i18npool$/lang.h $@
80
81$(SLOFILES) : $(INCCOM)$/xlang.h $(CFILES)
82
83$(MISC)$/rot.lst : \
84	$(MISC)$/x$(TARGET).c \
85	$(INCCOM)$/xlang.h \
86	..$/inc$/rot13.hrc \
87	..$/inc$/addin.h
88	@echo $< > $@
89