154 lines
5.3 KiB
Makefile
154 lines
5.3 KiB
Makefile
#
|
|
# Makefile for NetSurf
|
|
#
|
|
# Included by main makefile -- indicates sources
|
|
# for each build.
|
|
#
|
|
|
|
S_CONTENT := content.c fetch.c fetchcache.c urldb.c \
|
|
fetchers/fetch_curl.c fetchers/fetch_data.c
|
|
S_CSS := css.c css_enum.c parser.c ruleset.c scanner.c
|
|
S_RENDER := box.c box_construct.c box_normalise.c \
|
|
directory.c form.c html.c html_redraw.c \
|
|
imagemap.c layout.c list.c table.c textplain.c
|
|
S_UTILS := base64.c filename.c hashtable.c locale.c messages.c talloc.c \
|
|
url.c utf8.c utils.c useragent.c
|
|
S_DESKTOP := knockout.c options.c tree.c version.c
|
|
|
|
# S_COMMON are sources common to all builds
|
|
S_COMMON := $(addprefix content/,$(S_CONTENT)) \
|
|
$(addprefix css/,$(S_CSS)) \
|
|
$(addprefix render/,$(S_RENDER)) \
|
|
$(addprefix utils/,$(S_UTILS)) \
|
|
$(addprefix desktop/,$(S_DESKTOP))
|
|
|
|
S_IMAGE := bmp.c bmpread.c gif.c gifread.c ico.c jpeg.c \
|
|
mng.c nssprite.c svg.c rsvg.c
|
|
# S_IMAGE are sources related to image management
|
|
S_IMAGE := $(addprefix image/,$(S_IMAGE))
|
|
|
|
# S_BROWSER are sources related to full browsers but are common
|
|
# between RO and Unix builds
|
|
S_BROWSER := browser.c frames.c history_core.c netsurf.c save_text.c selection.c \
|
|
textinput.c
|
|
|
|
S_BROWSER := $(addprefix desktop/,$(S_BROWSER))
|
|
|
|
# S_RISCOS are sources purely for the RISC OS build
|
|
S_RISCOS := 401login.c artworks.c assert.c awrender.s bitmap.c buffer.c \
|
|
cookies.c configure.c debugwin.c dialog.c download.c draw.c filetype.c \
|
|
font.c global_history.c gui.c help.c history.c hotlist.c image.c \
|
|
menus.c message.c palettes.c plotters.c plugin.c print.c query.c \
|
|
save.c save_complete.c save_draw.c save_pdf.c schedule.c search.c sprite.c \
|
|
sslcert.c textarea.c textselection.c theme.c theme_install.c \
|
|
thumbnail.c \
|
|
treeview.c ucstables.c uri.c url_complete.c url_protocol.c wimp.c wimp_event.c \
|
|
window.c gui/progress_bar.c gui/status_bar.c \
|
|
$(addprefix configure/,con_cache.c con_connect.c con_content.c con_fonts.c \
|
|
con_home.c con_image.c con_inter.c con_language.c con_memory.c con_secure.c \
|
|
con_theme.c)
|
|
S_RISCOS := $(addprefix riscos/,$(S_RISCOS))
|
|
|
|
# S_DIALOGS are sources related to dialogs but required only
|
|
# for the GTK build
|
|
S_DIALOGS := gtk_options.c gtk_about.c
|
|
S_DIALOGS := $(addprefix gtk/dialogs/,$(S_DIALOGS))
|
|
|
|
# S_GTK are sources purely for the GTK build
|
|
S_GTK := font_pango.c gtk_bitmap.c gtk_gui.c gtk_schedule.c \
|
|
gtk_thumbnail.c gtk_plotters.c gtk_treeview.c gtk_scaffolding.c \
|
|
gtk_completion.c gtk_login.c gtk_throbber.c gtk_selection.c \
|
|
gtk_history.c gtk_window.c gtk_filetype.c gtk_download.c gtk_print.c
|
|
S_GTK := $(addprefix gtk/,$(S_GTK))
|
|
|
|
# S_PDF are sources of the pdf plotter + the ones for paged-printing
|
|
S_PDF := pdf_plotters.c font_haru.c
|
|
S_PRINT := print.c
|
|
S_LOOSE := loosen.c
|
|
S_PDF := $(addprefix pdf/,$(S_PDF)) $(addprefix desktop/,$(S_PRINT)) \
|
|
$(addprefix render/,$(S_LOOSE))
|
|
|
|
# S_BEOS are sources purely for the BeOS build
|
|
S_BEOS := beos_bitmap.cpp beos_fetch_rsrc.cpp beos_filetype.cpp beos_font.cpp \
|
|
beos_gui.cpp beos_history.cpp beos_login.cpp beos_options.cpp \
|
|
beos_plotters.cpp beos_scaffolding.cpp beos_schedule.cpp \
|
|
beos_thumbnail.cpp beos_treeview.cpp beos_throbber.cpp \
|
|
beos_window.cpp
|
|
S_BEOS := $(addprefix beos/,$(S_BEOS))
|
|
RDEF_BEOS := beos_res.rdef
|
|
RDEF_BEOS := $(addprefix beos/,$(RDEF_BEOS))
|
|
|
|
# S_DEBUG are sources purely for the debug build
|
|
S_DEBUG := netsurfd.c debug_bitmap.c filetyped.c fontd.c
|
|
S_DEBUG := $(addprefix debug/,$(S_DEBUG))
|
|
|
|
# Some extra rules for building the scanner etc.
|
|
css/css_enum.c css/css_enum.h: css/css_enums css/makeenum
|
|
$(VQ)echo "MAKEENUM: css"
|
|
$(Q)$(PERL) css/makeenum css/css_enum < css/css_enums
|
|
ifeq ($(HOST),riscos)
|
|
css/parser.c css/parser.h: css/parser.y
|
|
$(VQ)echo " LEMON: css/parser.y"
|
|
$(Q)dir css
|
|
$(Q)-lemon parser.y
|
|
$(Q)dir ^
|
|
$(Q)touch css/parser.c css/parser.h
|
|
css/scanner.c: css/scanner.l
|
|
$(VQ)echo " RE2C: css/scanner.l"
|
|
$(Q)dir css
|
|
$(Q)re2c -s scanner.l > scanner.c
|
|
$(Q)dir ^
|
|
utils/translit.c: transtab
|
|
$(VQ)echo "TRANSTAB: utils/translit.c"
|
|
$(Q)dir utils
|
|
$(Q)$(PERL) tt2code < transtab > translit.c
|
|
$(Q)dir ^
|
|
else
|
|
css/parser.c css/parser.h: css/parser.y
|
|
$(VQ)echo " LEMON: css/parser.y"
|
|
$(Q)# If lemon really fails hard, we'll never know, sorry
|
|
$(Q)cd css; lemon parser.y || true
|
|
$(Q)# Unfortunately if the output hasn't changed, lemon doesn't
|
|
$(Q)# alter the file and thus make gets confused.
|
|
$(Q)touch css/parser.c css/parser.h
|
|
css/scanner.c: css/scanner.l
|
|
$(VQ)echo " RE2C: css/scanner.l"
|
|
$(Q)cd css; re2c -s scanner.l > scanner.c
|
|
utils/translit.c: transtab
|
|
$(VQ)echo "TRANSTAB: utils/translit.c"
|
|
$(Q)cd utils; $(PERL) tt2code < transtab > translit.c
|
|
endif
|
|
|
|
clean-intermediates:
|
|
$(VQ)echo " CLEAN: intermediates"
|
|
$(Q)$(RM) css/css_enum.c css/css_enum.h css/parser.c css/parser.out css/parser.h
|
|
$(Q)$(RM) css/scanner.c utils/translit.c
|
|
|
|
CLEANS += clean-intermediates
|
|
|
|
# Finally select the correct set of sources for this build...
|
|
|
|
ifeq ($(TARGET),riscos)
|
|
SOURCES := $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_PDF) $(S_RISCOS)
|
|
EXETARGET := !NetSurf/!RunImage$(EXEEXT)
|
|
endif
|
|
|
|
ifeq ($(TARGET),gtk)
|
|
SOURCES := $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_PDF) $(S_GTK) $(S_DIALOGS)
|
|
EXETARGET := nsgtk
|
|
endif
|
|
|
|
ifeq ($(TARGET),beos)
|
|
SOURCES := $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_BEOS)
|
|
EXETARGET := NetSurf
|
|
endif
|
|
|
|
ifeq ($(TARGET),debug)
|
|
SOURCES := $(S_COMMON) $(S_IMAGE) $(S_DEBUG)
|
|
EXETARGET := nsdebug
|
|
endif
|
|
|
|
ifeq ($(SOURCES),)
|
|
$(error Unable to build NetSurf, could not determine set of sources to build)
|
|
endif
|