1998-12-08 22:43:20 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
1998-12-08 22:43:20 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
1998-12-08 22:43:20 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1998-12-08 22:43:20 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-05-19 01:08:52 +00:00
|
|
|
#
|
1998-12-08 22:43:20 +00:00
|
|
|
|
1999-05-19 01:08:52 +00:00
|
|
|
DEPTH = ../..
|
1998-12-08 22:43:20 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
1999-07-27 23:27:44 +00:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2002-09-02 02:22:10 +00:00
|
|
|
# This code removes the console from release builds
|
|
|
|
# (unless you've set MOZ_WINCONSOLE=1).
|
|
|
|
ifndef MOZ_WINCONSOLE
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
MOZ_WINCONSOLE=1
|
|
|
|
else
|
|
|
|
MOZ_WINCONSOLE=0
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
1999-05-19 01:08:52 +00:00
|
|
|
MODULE = apprunner
|
2001-09-18 13:41:47 +00:00
|
|
|
REQUIRES = xpcom \
|
2001-11-06 01:19:39 +00:00
|
|
|
xpconnect \
|
2001-09-18 13:41:47 +00:00
|
|
|
string \
|
|
|
|
webbrwsr \
|
|
|
|
widget \
|
|
|
|
dom \
|
|
|
|
necko \
|
|
|
|
pref \
|
|
|
|
appshell \
|
|
|
|
gfx \
|
|
|
|
chrome \
|
|
|
|
xpinstall \
|
|
|
|
uriloader \
|
|
|
|
view \
|
|
|
|
windowwatcher \
|
|
|
|
embed_base \
|
|
|
|
embedcomponents \
|
|
|
|
mpfilelocprovider \
|
|
|
|
browser \
|
|
|
|
docshell \
|
2002-03-07 00:44:03 +00:00
|
|
|
uconv \
|
2002-04-01 05:56:35 +00:00
|
|
|
locale \
|
2001-09-18 13:41:47 +00:00
|
|
|
xremoteservice \
|
2002-04-26 01:37:04 +00:00
|
|
|
profile \
|
2001-09-18 13:41:47 +00:00
|
|
|
$(NULL)
|
2001-08-15 04:34:46 +00:00
|
|
|
# for jprof
|
|
|
|
REQUIRES += jprof
|
2001-09-28 06:57:07 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
REQUIRES += \
|
|
|
|
intl \
|
|
|
|
profile \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2001-12-18 09:14:29 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
REQUIRES += intl profile appcomps
|
|
|
|
endif
|
2000-05-04 11:00:47 +00:00
|
|
|
|
2002-09-13 21:15:59 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2000-05-04 11:00:47 +00:00
|
|
|
ifeq ($(USE_SHORT_LIBNAME),1)
|
|
|
|
PROGRAM = mozilla$(BIN_SUFFIX)
|
|
|
|
else
|
2001-12-18 09:14:29 +00:00
|
|
|
PROGRAM = mozilla-bin$(BIN_SUFFIX)
|
2000-05-04 11:00:47 +00:00
|
|
|
endif
|
2000-09-02 00:12:07 +00:00
|
|
|
|
1999-07-27 23:27:44 +00:00
|
|
|
CPPSRCS = \
|
|
|
|
nsAppRunner.cpp \
|
2001-02-26 00:30:58 +00:00
|
|
|
nsWindowCreator.cpp \
|
2001-12-14 23:49:04 +00:00
|
|
|
showOSAlert.cpp \
|
1999-07-27 23:27:44 +00:00
|
|
|
$(NULL)
|
1999-06-26 07:42:19 +00:00
|
|
|
|
2002-01-01 00:03:57 +00:00
|
|
|
ifneq ($(OS_ARCH),WINNT)
|
|
|
|
CPPSRCS += nsSigHandlers.cpp
|
|
|
|
endif
|
|
|
|
|
2000-09-01 09:29:20 +00:00
|
|
|
XP_LIBS = \
|
|
|
|
$(EXTRA_DSO_LDOPTS) \
|
2000-05-04 11:00:47 +00:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2001-05-18 01:06:02 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2001-06-19 17:07:12 +00:00
|
|
|
ifndef BUILD_STATIC_LIBS
|
2001-06-20 20:21:49 +00:00
|
|
|
|
2002-02-19 10:01:05 +00:00
|
|
|
EXTRA_DSO_LIBS += gkgfx mpfilelocprovider_s
|
|
|
|
ifdef MOZ_OJI
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
EXTRA_DSO_LIBS += jsj$(MOZ_BITS)$(VERSION_NUMBER)
|
|
|
|
else
|
|
|
|
EXTRA_DSO_LIBS += jsj
|
|
|
|
endif
|
2001-05-18 01:06:02 +00:00
|
|
|
endif
|
|
|
|
|
2002-02-19 10:01:05 +00:00
|
|
|
else
|
|
|
|
include $(topsrcdir)/config/static-config.mk
|
2001-11-13 01:48:29 +00:00
|
|
|
|
2002-02-19 10:01:05 +00:00
|
|
|
EXTRA_DEPS += \
|
|
|
|
$(STATIC_EXTRA_DEPS) \
|
|
|
|
$(NULL)
|
|
|
|
DEFINES += $(STATIC_DEFINES)
|
|
|
|
CPPSRCS += $(STATIC_CPPSRCS)
|
2002-03-08 06:21:47 +00:00
|
|
|
EXTRA_DSO_LDOPTS+= -L$(DEPTH)/dist/lib/components
|
2002-02-19 10:01:05 +00:00
|
|
|
EXTRA_DSO_LIBS += $(STATIC_EXTRA_DSO_LIBS)
|
|
|
|
REQUIRES += $(STATIC_REQUIRES)
|
|
|
|
XP_LIBS += $(STATIC_EXTRA_LIBS)
|
2001-11-15 08:23:53 +00:00
|
|
|
|
2001-06-20 20:21:49 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
XP_LIBS += \
|
2002-05-15 01:37:07 +00:00
|
|
|
$(MOZ_JS_LIBS) \
|
2001-06-20 20:21:49 +00:00
|
|
|
$(XPCOM_LIBS) \
|
1999-07-27 23:27:44 +00:00
|
|
|
$(NSPR_LIBS) \
|
1999-08-24 12:37:15 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2000-04-20 04:35:07 +00:00
|
|
|
ifdef NS_TRACE_MALLOC
|
|
|
|
DEFINES += -DNS_TRACE_MALLOC
|
|
|
|
endif
|
|
|
|
|
2000-01-18 03:05:10 +00:00
|
|
|
ifdef MOZ_JPROF
|
|
|
|
XP_LIBS += -ljprof
|
|
|
|
endif
|
|
|
|
|
2000-09-01 09:29:20 +00:00
|
|
|
LIBS = $(XP_LIBS)
|
1999-09-10 08:00:09 +00:00
|
|
|
|
1999-10-14 23:27:45 +00:00
|
|
|
ifdef GC_LEAK_DETECTOR
|
|
|
|
LIBS += -lboehm
|
|
|
|
endif
|
|
|
|
|
2000-12-08 15:33:19 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),beos)
|
|
|
|
BEOS_PROGRAM_RESOURCE = $(srcdir)/apprunner-beos.rsrc
|
2001-07-25 02:22:54 +00:00
|
|
|
CPPSRCS += nsNativeAppSupportBeOS.cpp
|
|
|
|
CPPSRCS += nsNativeAppSupportBase.cpp
|
2000-12-08 15:33:19 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),photon)
|
|
|
|
CPPSRCS += nsNativeAppSupportPh.cpp
|
2002-04-06 07:13:16 +00:00
|
|
|
LIBS += -lphexlib -lph
|
2000-12-08 15:33:19 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
CPPSRCS += nsNativeAppSupportOS2.cpp
|
|
|
|
CPPSRCS += nsNativeAppSupportBase.cpp
|
2002-03-21 13:45:32 +00:00
|
|
|
RESFILE = splashos2.res
|
2000-12-08 15:33:19 +00:00
|
|
|
endif
|
|
|
|
|
2001-12-18 05:00:33 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk)
|
2002-01-08 06:39:47 +00:00
|
|
|
SPLASH_XPM = $(srcdir)/splash.xpm
|
2001-12-17 21:58:15 +00:00
|
|
|
CPPSRCS += nsNativeAppSupportGtk.cpp \
|
|
|
|
nsNativeAppSupportBase.cpp
|
2002-01-08 06:39:47 +00:00
|
|
|
DEFINES += -DSPLASH_XPM=\"$(SPLASH_XPM)\"
|
2001-05-17 18:35:38 +00:00
|
|
|
LIBS += $(MOZ_GTK_LDFLAGS)
|
2001-12-18 05:00:33 +00:00
|
|
|
endif
|
2000-12-08 15:33:19 +00:00
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2002-08-19 22:51:52 +00:00
|
|
|
RCINCLUDE = splash.rc
|
2001-12-18 09:14:29 +00:00
|
|
|
CPPSRCS += nsNativeAppSupportWin.cpp nsNativeAppSupportBase.cpp
|
2002-01-25 03:20:51 +00:00
|
|
|
OS_LIBS += comctl32.lib comdlg32.lib uuid.lib shell32.lib ole32.lib oleaut32.lib version.lib winspool.lib
|
2001-12-18 09:14:29 +00:00
|
|
|
endif
|
|
|
|
|
2002-08-15 12:34:50 +00:00
|
|
|
ifneq (,$(filter windows os2 gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
ifneq (,$(filter windows os2,$(MOZ_WIDGET_TOOLKIT)))
|
2002-08-15 00:36:57 +00:00
|
|
|
ICON_SUFFIX=.ico
|
|
|
|
else
|
|
|
|
ICON_SUFFIX=.xpm
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
ICON_DIR=gtk
|
|
|
|
else
|
|
|
|
ICON_DIR=$(MOZ_WIDGET_TOOLKIT)
|
|
|
|
endif
|
|
|
|
|
2002-07-21 23:04:48 +00:00
|
|
|
DESKTOP_ICONS = \
|
2002-08-15 00:36:57 +00:00
|
|
|
abcardWindow \
|
|
|
|
addressbookWindow \
|
|
|
|
bmPropsWindow \
|
|
|
|
bookmark-window \
|
|
|
|
calendar-window \
|
|
|
|
chatzilla-window \
|
|
|
|
downloadManager \
|
|
|
|
editorWindow \
|
|
|
|
findBookmarkWindow \
|
|
|
|
findHistoryWindow \
|
|
|
|
history-window \
|
|
|
|
jsconsoleWindow \
|
|
|
|
main-window \
|
|
|
|
messengerWindow \
|
|
|
|
msgcomposeWindow \
|
|
|
|
venkman-window \
|
|
|
|
winInspectorMain \
|
2002-07-21 23:04:48 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2002-08-15 00:36:57 +00:00
|
|
|
ifeq ($(ICON_DIR),gtk)
|
|
|
|
DESKTOP_ICONS_SMALL=$(patsubst %,%16,$(DESKTOP_ICONS))
|
|
|
|
endif
|
|
|
|
|
|
|
|
DESKTOP_ICON_FILES = $(addsuffix $(ICON_SUFFIX), $(DESKTOP_ICONS) $(DESKTOP_ICONS_SMALL))
|
|
|
|
|
|
|
|
GARBAGE += $(addprefix $(DIST)/bin/chrome/icons/default/,$(DESKTOP_ICON_FILES))
|
2002-07-21 23:04:48 +00:00
|
|
|
|
2002-08-15 00:36:57 +00:00
|
|
|
libs:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
2002-07-21 23:04:48 +00:00
|
|
|
$(INSTALL) $^ $(DIST)/bin/chrome/icons/default
|
2002-08-21 04:09:14 +00:00
|
|
|
|
|
|
|
install:: $(addprefix icons/$(ICON_DIR)/,$(DESKTOP_ICON_FILES))
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/chrome/icons/default
|
2002-07-21 23:04:48 +00:00
|
|
|
endif
|
|
|
|
|
2002-01-25 22:01:41 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
2002-01-30 01:23:23 +00:00
|
|
|
CMMSRCS += nsNativeAppSupportForCocoa.mm
|
2002-01-25 22:01:41 +00:00
|
|
|
LDFLAGS += \
|
|
|
|
-framework Cocoa \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2001-07-01 12:11:13 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
EXE_DEF_FILE = mozilla.def
|
|
|
|
endif
|
|
|
|
endif
|
2001-06-20 20:21:49 +00:00
|
|
|
|
2000-12-08 15:33:19 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2002-02-19 10:01:05 +00:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
include $(topsrcdir)/config/static-rules.mk
|
|
|
|
endif
|
|
|
|
|
2002-01-08 06:39:47 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk)
|
|
|
|
$(PROGRAM): $(SPLASH_XPM)
|
|
|
|
endif
|
|
|
|
|
2001-10-27 07:38:18 +00:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
2002-07-24 05:43:53 +00:00
|
|
|
EXTRA_DSO_LDOPTS := $(subst -dynamiclib -install_name @executable_path/\$@ -compatibility_version 1 -current_version 1,-execute,$(EXTRA_DSO_LDOPTS))
|
2002-03-27 03:15:58 +00:00
|
|
|
|
|
|
|
ifdef BUILD_STATIC_LIBS
|
2002-06-03 23:53:31 +00:00
|
|
|
LDFLAGS += -framework QuickTime $(TK_LIBS)
|
2002-03-27 03:15:58 +00:00
|
|
|
endif
|
|
|
|
|
2001-10-27 07:38:18 +00:00
|
|
|
endif
|
|
|
|
|
2002-04-02 22:20:57 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
#
|
|
|
|
# Control the default heap size.
|
|
|
|
# This is the heap returned by GetProcessHeap().
|
|
|
|
# As we use the CRT heap, the default size is too large and wastes VM.
|
|
|
|
#
|
|
|
|
# The default heap size is 1MB on Win32.
|
|
|
|
# The heap will grow if need be.
|
|
|
|
#
|
|
|
|
# Set it to 256k. See bug 127069.
|
|
|
|
#
|
|
|
|
LDFLAGS += /HEAP:0x40000
|
|
|
|
endif
|
|
|
|
|
1999-07-07 04:38:18 +00:00
|
|
|
CXXFLAGS += $(MOZ_TOOLKIT_REGISTRY_CFLAGS)
|
1999-04-01 08:01:07 +00:00
|
|
|
|
2002-01-08 06:39:47 +00:00
|
|
|
LOCAL_INCLUDES = -I$(srcdir)
|
|
|
|
|
2001-12-06 22:17:24 +00:00
|
|
|
ifneq (,$(filter-out OS2 WINNT,$(OS_ARCH)))
|
|
|
|
mozilla.1: mozilla.man.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
|
|
|
@sed -e "s|\@bindir\@|${bindir}|" -e "s|\@libdir\@|${libdir}|" \
|
|
|
|
-e "s|\@mozilla_version\@|${MOZILLA_VERSION}|" < $< > $@
|
|
|
|
|
2002-04-25 02:52:44 +00:00
|
|
|
libs:: mozilla.1
|
|
|
|
$(INSTALL) $< $(DIST)/man/man1
|
2001-12-06 22:17:24 +00:00
|
|
|
|
2002-04-25 02:52:44 +00:00
|
|
|
install:: mozilla.1
|
2002-08-21 04:09:14 +00:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $< $(DESTDIR)$(mandir)/man1
|
2002-04-25 02:52:44 +00:00
|
|
|
|
2002-08-07 09:26:30 +00:00
|
|
|
MOZILLA_SCRIPT=mozilla
|
|
|
|
|
|
|
|
$(MOZILLA_SCRIPT):: mozilla.in Makefile.in Makefile $(DEPTH)/config/autoconf.mk
|
2002-04-25 02:52:44 +00:00
|
|
|
cat $< | sed -e "s|%MOZAPPDIR%|$(mozappdir)|" \
|
2002-08-09 01:07:06 +00:00
|
|
|
-e "s|%MREDIR%|$(mredir)|" \
|
|
|
|
-e "s|mozilla-bin|$(PROGRAM)|g" > $@
|
2002-04-25 02:52:44 +00:00
|
|
|
chmod +x $@
|
|
|
|
|
2002-08-07 09:26:30 +00:00
|
|
|
libs:: $(MOZILLA_SCRIPT)
|
1999-05-19 01:08:52 +00:00
|
|
|
$(INSTALL) $< $(DIST)/bin
|
2002-04-25 02:52:44 +00:00
|
|
|
|
2002-08-07 09:26:30 +00:00
|
|
|
install:: $(MOZILLA_SCRIPT)
|
2002-08-21 04:09:14 +00:00
|
|
|
$(SYSINSTALL) $(IFLAGS2) $< $(DESTDIR)$(bindir)
|
2002-04-25 02:52:44 +00:00
|
|
|
|
2002-08-07 09:26:30 +00:00
|
|
|
GARBAGE += mozilla.1 $(MOZILLA_SCRIPT)
|
2002-04-25 02:52:44 +00:00
|
|
|
|
2000-10-31 21:49:38 +00:00
|
|
|
endif
|
1999-09-18 03:45:06 +00:00
|
|
|
|
2000-02-11 14:37:43 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),photon)
|
2001-11-21 08:55:59 +00:00
|
|
|
libs:: $(srcdir)/splash.bmp
|
2000-02-11 14:37:43 +00:00
|
|
|
$(INSTALL) $< $(DIST)/bin
|
|
|
|
endif
|
2000-02-13 15:23:28 +00:00
|
|
|
|
2001-07-01 12:11:13 +00:00
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
$(EXE_DEF_FILE):
|
|
|
|
rm -f $@
|
|
|
|
@echo NAME mozilla >$(EXE_DEF_FILE)
|
|
|
|
@echo IMPORTS >>$(EXE_DEF_FILE)
|
|
|
|
@echo WinQueryProperty = PMMERGE.5450 >>$(EXE_DEF_FILE)
|
|
|
|
@echo WinRemoveProperty = PMMERGE.5451 >>$(EXE_DEF_FILE)
|
|
|
|
@echo WinSetProperty = PMMERGE.5452 >>$(EXE_DEF_FILE)
|
|
|
|
@echo DaxOpenSave = PMCTLS.295 >>$(EXE_DEF_FILE)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2001-06-20 20:21:49 +00:00
|
|
|
ifeq ($(MOZ_REORDER),1)
|
|
|
|
|
|
|
|
LDSCRIPT = ldscript
|
|
|
|
LDFLAGS += -Wl,-T,$(LDSCRIPT)
|
|
|
|
GARBAGE += $(LDSCRIPT)
|
2001-08-17 02:03:34 +00:00
|
|
|
ORDERFILE = $(srcdir)/mozilla-bin.order
|
2001-06-20 20:21:49 +00:00
|
|
|
|
|
|
|
$(PROGRAM) : $(LDSCRIPT) $(ORDERFILE)
|
|
|
|
|
|
|
|
$(LDSCRIPT): $(ORDERFILE)
|
2001-08-10 21:01:19 +00:00
|
|
|
$(PERL) $(topsrcdir)/config/mklinkscript.pl -o $@ $<
|
2001-06-20 20:21:49 +00:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2002-01-24 15:11:18 +00:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
2001-11-14 01:45:03 +00:00
|
|
|
|
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
APP_NAME = MozillaDebug
|
|
|
|
else
|
|
|
|
APP_NAME = Mozilla
|
|
|
|
endif
|
|
|
|
|
2001-11-21 08:55:59 +00:00
|
|
|
libs:: $(PROGRAM)
|
2001-11-14 01:45:03 +00:00
|
|
|
rm -rf $(DIST)/$(APP_NAME).app
|
|
|
|
mkdir $(DIST)/$(APP_NAME).app
|
|
|
|
cp -R $(srcdir)/macbuild/Contents $(DIST)/$(APP_NAME).app
|
|
|
|
cp -RL $(DIST)/bin $(DIST)/$(APP_NAME).app/Contents/MacOS
|
2002-01-10 23:36:56 +00:00
|
|
|
cp -RL $(srcdir)/macbuild/mach.icns $(DIST)/$(APP_NAME).app/Contents/Resources/mach.icns
|
2002-02-06 15:54:44 +00:00
|
|
|
echo APPLMOZZ > $(DIST)/$(APP_NAME).app/Contents/PkgInfo
|
2001-10-27 07:38:18 +00:00
|
|
|
endif
|
|
|
|
|
2002-09-26 22:47:37 +00:00
|
|
|
libs::
|
|
|
|
touch $(DIST)/bin/.autoreg
|
|
|
|
|
2002-01-08 06:39:47 +00:00
|
|
|
echo_objs:
|
|
|
|
@echo $(OBJS)
|