2003-06-30 16:44:03 +04:00
|
|
|
#
|
|
|
|
# This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
# Licensed under the GNU General Public License,
|
|
|
|
# http://www.opensource.org/licenses/gpl-license
|
|
|
|
#
|
2002-07-28 01:10:45 +04:00
|
|
|
|
2004-07-20 15:29:06 +04:00
|
|
|
# There are 6 possible builds of NetSurf:
|
2004-06-03 01:40:55 +04:00
|
|
|
#
|
|
|
|
# riscos -- standard RISC OS build
|
|
|
|
# riscos_small -- identical to "riscos", but linked with smaller libraries
|
|
|
|
# (no openssl, and libcurl without ssl support)
|
2004-07-20 15:29:06 +04:00
|
|
|
# ncos -- NCOS build (variant of RISC OS for Network Computers)
|
2004-06-03 01:40:55 +04:00
|
|
|
# debug -- command line Unix/Linux, for debugging
|
|
|
|
# riscos_debug -- a cross between "riscos" and "debug"
|
|
|
|
# gtk -- experimental gtk version
|
|
|
|
#
|
|
|
|
# "riscos", "riscos_small", and "riscos_debug" can be compiled under RISC OS,
|
|
|
|
# or cross-compiled using gccsdk.
|
|
|
|
|
2004-06-21 19:09:59 +04:00
|
|
|
OBJECTS_COMMON = content.o fetch.o fetchcache.o # content/
|
2004-06-03 01:40:55 +04:00
|
|
|
OBJECTS_COMMON += css.o css_enum.o parser.o ruleset.o scanner.o # css/
|
|
|
|
OBJECTS_COMMON += box.o form.o html.o layout.o textplain.o # render/
|
|
|
|
OBJECTS_COMMON += messages.o pool.o translit.o url.o utils.o # utils/
|
|
|
|
OBJECTS_COMMON += imagemap.o loginlist.o options.o # desktop/
|
|
|
|
|
|
|
|
OBJECTS_RISCOS = $(OBJECTS_COMMON)
|
|
|
|
OBJECTS_RISCOS += browser.o netsurf.o version.o # desktop/
|
2004-06-21 19:27:56 +04:00
|
|
|
OBJECTS_RISCOS += 401login.o debugwin.o \
|
2004-07-20 03:35:12 +04:00
|
|
|
buffer.o dialog.o download.o draw.o filetype.o font.o gif.o \
|
2004-06-30 03:13:40 +04:00
|
|
|
gifread.o gui.o help.o history.o hotlist.o htmlinstance.o \
|
2004-07-17 00:15:39 +04:00
|
|
|
htmlredraw.o jpeg.o menus.o mng.o mouseactions.o plugin.o \
|
2004-07-26 00:45:16 +04:00
|
|
|
save.o save_complete.o save_draw.o save_text.o \
|
2004-06-11 00:41:26 +04:00
|
|
|
schedule.o sprite.o textselection.o theme.o thumbnail.o \
|
2004-07-06 00:19:52 +04:00
|
|
|
toolbar.o ufont.o uri.o url_protocol.o wimp.o window.o # riscos/
|
2004-07-20 15:29:06 +04:00
|
|
|
# OBJECTS_RISCOS += memdebug.o
|
|
|
|
|
|
|
|
OBJECTS_NCOS = $(OBJECTS_RISCOS)
|
2004-06-03 01:40:55 +04:00
|
|
|
|
|
|
|
OBJECTS_DEBUG = $(OBJECTS_COMMON)
|
|
|
|
OBJECTS_DEBUG += filetyped.o fontd.o netsurfd.o # debug/
|
2004-07-20 15:29:06 +04:00
|
|
|
OBJECTS_DEBUG += gif.o gifread.o jpeg.o mng.o png.o save_complete.o \
|
|
|
|
schedule.o # riscos/
|
2004-06-03 01:40:55 +04:00
|
|
|
|
|
|
|
OBJECTS_DEBUGRO = $(OBJECTS_COMMON)
|
|
|
|
OBJECTS_DEBUGRO += netsurfd.o # debug/
|
|
|
|
OBJECTS_DEBUGRO += version.o # desktop/
|
2004-06-21 19:27:56 +04:00
|
|
|
OBJECTS_DEBUGRO += draw.o filetype.o font.o \
|
2004-07-22 16:12:21 +04:00
|
|
|
gif.o gifread.o jpeg.o mng.o png.o save_complete.o \
|
|
|
|
schedule.o sprite.o ufont.o # riscos/
|
2004-06-03 01:40:55 +04:00
|
|
|
|
|
|
|
OBJECTS_GTK = $(OBJECTS_COMMON)
|
|
|
|
OBJECTS_GTK += filetyped.o # debug/
|
2004-06-22 22:48:33 +04:00
|
|
|
OBJECTS_GTK += browser.o netsurf.o version.o # desktop/
|
|
|
|
OBJECTS_GTK += font_pango.o gtk_gui.o gtk_window.o # gtk/
|
2004-06-03 01:40:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
OBJDIR_RISCOS = $(shell $(CC) -dumpmachine)
|
|
|
|
SOURCES_RISCOS=$(OBJECTS_RISCOS:.o=.c)
|
|
|
|
OBJS_RISCOS=$(OBJECTS_RISCOS:%.o=$(OBJDIR_RISCOS)/%.o)
|
2004-05-21 00:51:42 +04:00
|
|
|
|
2004-07-20 15:29:06 +04:00
|
|
|
OBJDIR_NCOS = $(shell $(CC) -dumpmachine)-ncos
|
|
|
|
SOURCES_NCOS=$(OBJECTS_NCOS:.o=.c)
|
|
|
|
OBJS_NCOS=$(OBJECTS_NCOS:%.o=$(OBJDIR_NCOS)/%.o)
|
|
|
|
|
2004-05-21 00:51:42 +04:00
|
|
|
OBJDIR_DEBUG = $(shell $(CC_DEBUG) -dumpmachine)-debug
|
|
|
|
SOURCES_DEBUG=$(OBJECTS_DEBUG:.o=.c)
|
|
|
|
OBJS_DEBUG=$(OBJECTS_DEBUG:%.o=$(OBJDIR_DEBUG)/%.o)
|
|
|
|
|
2004-06-03 01:40:55 +04:00
|
|
|
OBJS_DEBUGRO=$(OBJECTS_DEBUGRO:%.o=$(OBJDIR_RISCOS)/%.o)
|
|
|
|
|
|
|
|
OBJDIR_GTK = $(shell gcc -dumpmachine)-gtk
|
|
|
|
SOURCES_GTK=$(OBJECTS_GTK:.o=.c)
|
|
|
|
OBJS_GTK=$(OBJECTS_GTK:%.o=$(OBJDIR_GTK)/%.o)
|
|
|
|
|
|
|
|
# Inclusion of platform specific files has to occur after the OBJDIR stuff as
|
|
|
|
# that is refered to in the files
|
2004-05-21 00:51:42 +04:00
|
|
|
|
2004-06-10 00:20:10 +04:00
|
|
|
OS = $(word 2,$(subst -, ,$(shell gcc -dumpmachine)))
|
2004-05-21 00:51:42 +04:00
|
|
|
ifeq ($(OS),riscos)
|
|
|
|
include riscos.mk
|
|
|
|
else
|
|
|
|
include posix.mk
|
|
|
|
endif
|
|
|
|
|
2004-06-03 01:40:55 +04:00
|
|
|
VPATH = content:css:desktop:render:riscos:utils:debug:gtk
|
2004-05-21 00:06:31 +04:00
|
|
|
|
2003-05-31 22:40:46 +04:00
|
|
|
WARNFLAGS = -W -Wall -Wundef -Wpointer-arith -Wbad-function-cast -Wcast-qual \
|
2004-02-26 20:22:41 +03:00
|
|
|
-Wcast-align -Wwrite-strings -Wstrict-prototypes \
|
2003-05-31 22:40:46 +04:00
|
|
|
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls \
|
2003-07-10 01:33:01 +04:00
|
|
|
-Wnested-externs -Winline -Wno-unused-parameter -Wuninitialized
|
2004-05-21 00:06:31 +04:00
|
|
|
|
2004-05-21 00:51:42 +04:00
|
|
|
# CFLAGS have to appear after the inclusion of platform specific files as the
|
2004-06-03 01:40:55 +04:00
|
|
|
# PLATFORM_CFLAGS variables are defined in them
|
2004-05-21 00:51:42 +04:00
|
|
|
|
2004-06-03 01:40:55 +04:00
|
|
|
CFLAGS_RISCOS = -std=c9x -D_BSD_SOURCE -Driscos -DBOOL_DEFINED -O \
|
2004-07-20 15:29:06 +04:00
|
|
|
$(WARNFLAGS) -I.. $(PLATFORM_CFLAGS_RISCOS) -mpoke-function-name \
|
|
|
|
# -include netsurf/utils/memdebug.h
|
|
|
|
CFLAGS_NCOS = $(CFLAGS_RISCOS) -Dncos
|
2004-06-03 01:40:55 +04:00
|
|
|
CFLAGS_DEBUG = -std=c9x -D_BSD_SOURCE -Ddebug $(WARNFLAGS) -I.. \
|
|
|
|
$(PLATFORM_CFLAGS_DEBUG) -g
|
|
|
|
CFLAGS_GTK = -std=c9x -D_BSD_SOURCE -D_POSIX_C_SOURCE -Dgtk \
|
|
|
|
$(WARNFLAGS) -I.. -g \
|
|
|
|
`pkg-config --cflags gtk+-2.0` `xml2-config --cflags`
|
2003-05-31 22:40:46 +04:00
|
|
|
|
|
|
|
# targets
|
2004-06-03 01:40:55 +04:00
|
|
|
riscos: $(RUNIMAGE)
|
|
|
|
$(RUNIMAGE) : $(OBJS_RISCOS)
|
|
|
|
$(CC) -o $@ $(LDFLAGS_RISCOS) $^
|
|
|
|
riscos_small: u!RunImage,ff8
|
|
|
|
u!RunImage,ff8 : $(OBJS_RISCOS)
|
2004-03-19 19:31:03 +03:00
|
|
|
$(CC) -o $@ $(LDFLAGS_SMALL) $^
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2004-07-20 15:29:06 +04:00
|
|
|
ncos: $(NCRUNIMAGE)
|
|
|
|
$(NCRUNIMAGE) : $(OBJS_NCOS)
|
|
|
|
$(CC) -o $@ $(LDFLAGS_RISCOS) $^
|
|
|
|
|
2004-06-03 01:40:55 +04:00
|
|
|
debug: nsdebug
|
|
|
|
nsdebug: $(OBJS_DEBUG)
|
2004-05-21 00:06:31 +04:00
|
|
|
$(CC_DEBUG) -o $@ $(LDFLAGS_DEBUG) $^
|
2003-06-21 17:18:00 +04:00
|
|
|
|
2004-06-03 01:40:55 +04:00
|
|
|
riscos_debug: nsrodebug,ff8
|
|
|
|
nsrodebug,ff8: $(OBJS_DEBUGRO)
|
|
|
|
$(CC) -o $@ $(LDFLAGS_RISCOS) $^
|
|
|
|
|
|
|
|
gtk: nsgtk
|
|
|
|
nsgtk: $(OBJS_GTK)
|
|
|
|
gcc -o nsgtk `pkg-config --cflags --libs gtk+-2.0 gthread-2.0` \
|
|
|
|
$(LDFLAGS_DEBUG) $^
|
|
|
|
|
|
|
|
netsurf.zip: $(RUNIMAGE)
|
|
|
|
rm netsurf.zip; riscos-zip -9vr, netsurf.zip !NetSurf
|
|
|
|
|
2003-05-31 22:40:46 +04:00
|
|
|
# pattern rule for c source
|
2004-06-03 01:40:55 +04:00
|
|
|
$(OBJDIR_RISCOS)/%.o : %.c
|
|
|
|
@echo "==> $<"
|
|
|
|
@$(CC) -o $@ -c $(CFLAGS_RISCOS) $<
|
2004-07-20 15:29:06 +04:00
|
|
|
$(OBJDIR_NCOS)/%.o : %.c
|
|
|
|
@echo "==> $<"
|
|
|
|
@$(CC) -o $@ -c $(CFLAGS_NCOS) $<
|
2003-06-21 17:18:00 +04:00
|
|
|
$(OBJDIR_DEBUG)/%.o : %.c
|
2004-06-03 01:40:55 +04:00
|
|
|
@echo "==> $<"
|
|
|
|
@$(CC_DEBUG) -o $@ -c $(CFLAGS_DEBUG) $<
|
|
|
|
$(OBJDIR_GTK)/%.o : %.c
|
|
|
|
@echo "==> $<"
|
|
|
|
@gcc -o $@ -c $(CFLAGS_GTK) $<
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2003-05-31 22:40:46 +04:00
|
|
|
# special cases
|
2003-04-04 19:19:32 +04:00
|
|
|
css/css_enum.c css/css_enum.h: css/css_enums css/makeenum
|
2003-06-05 18:39:54 +04:00
|
|
|
cd ..; /usr/bin/perl netsurf/css/makeenum netsurf/css/css_enum < netsurf/css/css_enums
|
2003-04-06 22:09:34 +04:00
|
|
|
css/parser.c: css/parser.y
|
2003-06-05 18:39:54 +04:00
|
|
|
-cd css; lemon parser.y
|
2004-05-01 21:48:38 +04:00
|
|
|
css/scanner.c: css/scanner.l
|
|
|
|
cd css; re2c -s scanner.l > scanner.c
|
2003-12-29 03:38:59 +03:00
|
|
|
utils/translit.c: transtab
|
|
|
|
cd utils; ./tt2code < transtab > translit.c
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-05-31 22:40:46 +04:00
|
|
|
# generate dependencies
|
2004-07-20 15:29:06 +04:00
|
|
|
depend : $(SOURCES_RISCOS) $(SOURCES_NCOS) $(SOURCES_DEBUG) $(SOURCES_GTK)
|
|
|
|
-mkdir $(OBJDIR_RISCOS) $(OBJDIR_NCOS) $(OBJDIR_DEBUG) $(OBJDIR_GTK)
|
2004-06-03 01:40:55 +04:00
|
|
|
$(CC) -MM -MG $(CFLAGS_RISCOS) $^ | sed 's|.*\.o:|$(OBJDIR_RISCOS)/&|g' > depend
|
|
|
|
$(CC_DEBUG) -MM -MG $(CFLAGS_DEBUG) $^ | sed 's|.*\.o:|$(OBJDIR_DEBUG)/&|g' >> depend
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-05-31 22:40:46 +04:00
|
|
|
# remove generated files
|
|
|
|
clean :
|
2004-07-20 15:29:06 +04:00
|
|
|
-rm $(OBJDIR_RISCOS)/* $(OBJDIR_NCOS)/* \
|
|
|
|
$(OBJDIR_DEBUG)/* $(OBJDIR_GTK)/* \
|
2004-06-03 01:40:55 +04:00
|
|
|
depend css/css_enum.c css/css_enum.h \
|
2003-05-31 22:40:46 +04:00
|
|
|
css/parser.c css/parser.h css/scanner.c css/scanner.h
|
2004-06-03 01:40:55 +04:00
|
|
|
|
|
|
|
ifneq ($(OS),riscos)
|
|
|
|
include depend
|
|
|
|
endif
|