office-gobmx/solenv/inc/tg_app.mk

207 lines
7.5 KiB
Makefile
Raw Normal View History

2000-09-20 08:43:26 -05:00
#*************************************************************************
2001-06-20 02:58:57 -05:00
#
# OpenOffice.org - a multi-platform office productivity suite
2001-06-20 02:58:57 -05:00
#
# $RCSfile: tg_app.mk,v $
2001-06-20 02:58:57 -05:00
#
# $Revision: 1.55 $
2001-06-20 02:58:57 -05:00
#
# last change: $Author: kz $ $Date: 2006-07-05 21:57:28 $
2001-06-20 02:58:57 -05:00
#
# The Contents of this file are made available subject to
# the terms of GNU Lesser General Public License Version 2.1.
2001-06-20 02:58:57 -05:00
#
#
# GNU Lesser General Public License Version 2.1
# =============================================
# Copyright 2005 by Sun Microsystems, Inc.
# 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-06-20 02:58:57 -05:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1, as published by the Free Software Foundation.
2001-06-20 02:58:57 -05:00
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
2001-06-20 02:58:57 -05:00
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
2001-06-20 02:58:57 -05:00
#
2000-09-20 08:43:26 -05:00
#*************************************************************************
#######################################################
2001-06-20 02:58:57 -05:00
# instructions for linking
2000-09-20 08:43:26 -05:00
# unroll begin
.IF "$(APP$(TNR)LINKTYPE)" != ""
#must be either STATIC or SHARED
APP$(TNR)LINKTYPEFLAG=$(APPLINK$(APP$(TNR)LINKTYPE))
2000-09-20 08:43:26 -05:00
.ENDIF
# decide how to link
.IF "$(APP$(TNR)CODETYPE)"=="C"
APP$(TNR)LINKER=$(LINKC)
APP$(TNR)STDLIB=$(subst,CPPRUNTIME, $(STDLIB))
APP$(TNR)LINKFLAGS+=$(LINKCFLAGS)
.ELSE # "$(APP$(TNR)CODETYPE)"=="C"
APP$(TNR)LINKER=$(LINK)
APP$(TNR)STDLIB=$(subst,CPPRUNTIME,$(STDLIBCPP) $(STDLIB))
APP$(TNR)LINKFLAGS+=$(LINKFLAGS)
.ENDIF # "$(APP$(TNR)CODETYPE)"=="C"
2000-09-20 08:43:26 -05:00
.IF "$(APP$(TNR)STACK)" != ""
.IF "$(LINKFLAGSTACK)" != ""
APP$(TNR)STACKN=$(LINKFLAGSTACK)$(APP$(TNR)STACK)
.ENDIF
.ELSE
APP$(TNR)STACKN=
.ENDIF
2000-09-20 08:43:26 -05:00
.IF "$(APP$(TNR)NOSAL)"==""
.IF "$(TARGETTYPE)" == "GUI"
APP$(TNR)OBJS+= $(STDOBJVCL)
.ENDIF
.ENDIF
.IF "$(GUI)" == "UNX"
APP$(TNR)DEPN+:=$(APP$(TNR)DEPNU)
2000-09-20 08:43:26 -05:00
USE_APP$(TNR)DEF=
.ENDIF
.IF "$(APP$(TNR)TARGETN)"!=""
2001-09-28 11:11:33 -05:00
.IF "$(APP$(TNR)PRODUCTNAME)"!=""
APP$(TNR)PRODUCTDEF:=-DPRODUCT_NAME=\"$(APP$(TNR)PRODUCTNAME)\"
.ENDIF # "$(APP$(TNR)PRODUCTNAME)"!=""
2001-09-28 11:11:33 -05:00
.IF "$(linkinc)"!=""
.IF "$(GUI)"=="WNT"
$(MISC)$/$(APP$(TNR)TARGET)_linkinc.ls .PHONY:
@+-$(RM) $@ >& $(NULLDEV)
2002-03-26 11:23:25 -06:00
+sed -f $(COMMON_ENV_TOOLS)$/chrel.sed $(foreach,i,$(APP$(TNR)LIBS) $(i:s/.lib/.lin/)) >> $@
.ENDIF
2001-09-28 11:11:33 -05:00
LINKINCTARGETS+=$(MISC)$/$(APP$(TNR)TARGETN:b)_linkinc.ls
$(APP$(TNR)TARGETN) : $(LINKINCTARGETS)
.ENDIF # "$(linkinc)"!=""
# Allow for target specific LIBSALCPPRT override
APP$(TNR)LIBSALCPPRT*=$(LIBSALCPPRT)
2000-09-20 08:43:26 -05:00
$(APP$(TNR)TARGETN): $(APP$(TNR)OBJS) $(APP$(TNR)LIBS) \
$(APP$(TNR)RES) \
$(APP$(TNR)ICON) $(APP$(TNR)DEPN) $(USE_APP$(TNR)DEF)
@echo ------------------------------
@echo Making: $@
.IF "$(GUI)"=="UNX"
.IF "$(OS)"=="MACOSX"
2000-09-20 08:43:26 -05:00
@+echo unx
@+-$(RM) $(MISC)$/$(@:b).list
2000-09-20 08:43:26 -05:00
@+-$(RM) $(MISC)$/$(@:b).cmd
@+-$(RM) $(MISC)$/$(@:b).strip
@+echo $(STDSLO) $(APP$(TNR)OBJS:s/.obj/.o/) \
`cat /dev/null $(APP$(TNR)LIBS) | sed s\#$(ROUT)\#$(OUT)\#g` | tr -s " " "\n" > $(MISC)$/$(@:b).list
@+echo $(APP$(TNR)LINKER) $(APP$(TNR)LINKFLAGS) $(LINKFLAGSAPP) -L$(PRJ)$/$(INPATH)$/lib $(SOLARLIB) -o $@ \
`macosx-dylib-link-list $(PRJNAME) $(SOLARVERSION)$/$(INPATH)$/lib $(PRJ)$/$(INPATH)$/lib $(APP$(TNR)STDLIBS) $(APP$(TNR)STDLIB) $(STDLIB$(TNR))` \
$(APP$(TNR)LINKTYPEFLAG) $(APP$(TNR)STDLIBS) $(APP$(TNR)STDLIB) $(STDLIB$(TNR)) -filelist $(MISC)$/$(@:b).list > $(MISC)$/$(@:b).cmd
2000-09-20 08:43:26 -05:00
@cat $(MISC)$/$(@:b).cmd
@source $(MISC)$/$(@:b).cmd
# Need to strip __objcInit symbol to avoid duplicate symbols when loading
# libraries at runtime
@+-nm $@ | grep -v ' U ' | $(AWK) '{ print $$NF }' | grep -F -x '__objcInit' > $(MISC)$/$(@:b).strip
@strip -i -R $(MISC)$/$(@:b).strip -X $@
2000-09-20 08:43:26 -05:00
@ls -l $@
.IF "$(TARGETTYPE)"=="GUI"
@echo "Making: $@.app"
@macosx-create-bundle $@
.ENDIF # "$(TARGETTYPE)"=="GUI"
.ELSE # "$(OS)"=="MACOSX"
@+echo unx
@+-$(RM) $(MISC)$/$(@:b).cmd
@+echo $(APP$(TNR)LINKER) $(APP$(TNR)LINKFLAGS) $(LINKFLAGSAPP) -L$(PRJ)$/$(INPATH)$/lib $(SOLARLIB) $(STDSLO) \
$(APP$(TNR)OBJS:s/.obj/.o/) '\' > $(MISC)$/$(@:b).cmd
2002-01-15 05:14:36 -06:00
@cat $(mktmp /dev/null $(APP$(TNR)LIBS)) | xargs -n 1 cat | sed s\#$(ROUT)\#$(OUT)\#g | sed 's#$$# \\#' >> $(MISC)$/$(@:b).cmd
@+echo $(APP$(TNR)LINKTYPEFLAG) $(APP$(TNR)LIBSALCPPRT) $(APP$(TNR)STDLIBS) $(APP$(TNR)STDLIB) $(STDLIB$(TNR)) -o $@ >> $(MISC)$/$(@:b).cmd
2002-01-15 05:14:36 -06:00
cat $(MISC)$/$(@:b).cmd
@source $(MISC)$/$(@:b).cmd
@ls -l $@
.ENDIF # "$(OS)"=="MACOSX"
2000-09-20 08:43:26 -05:00
.ENDIF
.IF "$(GUI)" == "WNT"
@+-$(MKDIR) $(@:d:d) >& $(NULLDEV)
.IF "$(APP$(TNR)LINKRES)" != ""
@+-$(RM) $(MISC)$/$(APP$(TNR)LINKRES:b).rc >& $(NULLDEV)
.IF "$(APP$(TNR)ICON)" != ""
.IF "$(USE_SHELL)"=="4nt"
@-+echo 1 ICON "$(APP$(TNR)ICON:s/\/\\/)" >> $(MISC)$/$(APP$(TNR)LINKRES:b).rc
2002-04-10 05:34:35 -05:00
.ELSE # "$(USE_SHELL)"=="4nt"
@-+$(WRAPCMD) echo 1 ICON $(EMQ)"$(APP$(TNR)ICON)$(EMQ)" | $(SED) 'sX\\X\\\\Xg' >> $(MISC)$/$(APP$(TNR)LINKRES:b).rc
2002-04-10 05:34:35 -05:00
.ENDIF # "$(USE_SHELL)"=="4nt"
.ENDIF # "$(APP$(TNR)ICON)" != ""
.IF "$(APP$(TNR)VERINFO)" != ""
@-+echo $(EMQ)#define VERVARIANT $(BUILD) >> $(MISC)$/$(APP$(TNR)LINKRES:b).rc
@-+echo $(EMQ)#include $(EMQ)"$(APP$(TNR)VERINFO)$(EMQ)" >> $(MISC)$/$(APP$(TNR)LINKRES:b).rc
.ENDIF # "$(APP$(TNR)VERINFO)" != ""
$(RC) -DWIN32 $(APP$(TNR)PRODUCTDEF) -I$(SOLARRESDIR) $(INCLUDE) $(RCLINKFLAGS) $(MISC)$/$(APP$(TNR)LINKRES:b).rc
2000-09-20 08:43:26 -05:00
.ENDIF # "$(APP$(TNR)LINKRES)" != ""
.IF "$(linkinc)" == ""
$(APP$(TNR)LINKER) @$(mktmp \
$(APP$(TNR)LINKFLAGS) \
2000-09-20 08:43:26 -05:00
$(LINKFLAGSAPP) $(APP$(TNR)BASEX) \
$(APP$(TNR)STACKN) \
-out:$@ \
-map:$(MISC)$/{$(subst,$/,_ $(APP$(TNR)TARGET)).map} \
2000-09-20 08:43:26 -05:00
$(STDOBJ) \
$(APP$(TNR)LINKRES) \
$(APP$(TNR)RES) \
2000-09-20 08:43:26 -05:00
$(APP$(TNR)OBJS) \
$(APP$(TNR)LIBS) \
$(APP$(TNR)STDLIBS) \
$(APP$(TNR)STDLIB) $(STDLIB$(TNR)) \
2000-09-20 08:43:26 -05:00
)
.ELSE
+-$(RM) $(MISC)\$(APP$(TNR)TARGET).lnk
+-$(RM) $(MISC)\$(APP$(TNR)TARGET).lst
+-$(RM) $(MISC)\linkobj.lst
+for %_i in ($(MISC)\*.obj) do type %_i >> $(MISC)\linkobj.lst
type $(mktmp,$(MISC)\$(APP$(TNR)TARGET).lst
$(APP$(TNR)LINKFLAGS) \
2000-09-20 08:43:26 -05:00
$(LINKFLAGSAPP) $(APP$(TNR)BASEX) \
$(APP$(TNR)STACKN) \
-out:$@ \
$(STDOBJ) \
$(APP$(TNR)LINKRES) \
$(APP$(TNR)RES) \
2000-09-20 08:43:26 -05:00
$(APP$(TNR)OBJS) \
$(APP$(TNR)LIBS) \
$(APP$(TNR)STDLIBS) \
$(APP$(TNR)STDLIB) $(STDLIB$(TNR)))
$(SED) -e 's/\(\.\.\\\)\{2,4\}/..\\/g' $(MISC)\$(APP$(TNR)TARGETN:b)_linkobj.lst >> $(MISC)\$(APP$(TNR)TARGET).lst
+$(IFEXIST) $(MISC)$/$(APP$(TNR)TARGET).lst $(THEN) type $(MISC)$/$(APP$(TNR)TARGET).lst >> $(MISC)$/$(APP$(TNR)TARGET).lnk $(FI)
$(APP$(TNR)LINKER) @$(MISC)\$(APP$(TNR)TARGET).lnk
2000-09-20 08:43:26 -05:00
.ENDIF # "$(linkinc)" == ""
.IF "$(APP$(TNR)TARGET)" == "loader"
2000-11-09 07:18:00 -06:00
+$(PERL) loader.pl $@
2002-04-10 05:34:35 -05:00
.IF "$(USE_SHELL)"=="4nt"
2000-09-20 08:43:26 -05:00
+$(COPY) /b $(@)+$(@:d)unloader.exe $(@:d)_new.exe
2002-04-10 05:34:35 -05:00
.ELSE # "$(USE_SHELL)"=="4nt"
+$(TYPE) $(@) $(@:d)unloader.exe > $(@:d)_new.exe
.ENDIF # "$(USE_SHELL)"=="4nt"
2000-09-20 08:43:26 -05:00
+$(RM) $@
+$(RENAME) $(@:d)_new.exe $(@:d)loader.exe
.ENDIF # "$(TARGET)" == "setup"
.ENDIF # "$(GUI)" == "WNT"
.ENDIF # "$(APP$(TNR)TARGETN)"!=""
2001-06-20 02:58:57 -05:00
# Instruction for linking
2000-09-20 08:43:26 -05:00
# unroll end
#######################################################