mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-26 16:29:36 +03:00
e6c666d4f4
This removes the sslcert_viewer entirely from the code. Where possible I've also trimmed out of frontends any code I think should not be present. Frontends should check and remove any further references that I have failed to catch. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
21 lines
735 B
Makefile
21 lines
735 B
Makefile
# Sources for desktop
|
|
|
|
S_DESKTOP := cookie_manager.c knockout.c hotlist.c mouse.c \
|
|
plot_style.c print.c search.c searchweb.c scrollbar.c \
|
|
textarea.c version.c system_colour.c \
|
|
local_history.c global_history.c treeview.c page-info.c
|
|
|
|
S_DESKTOP := $(addprefix desktop/,$(S_DESKTOP))
|
|
|
|
# version.c needs the testament
|
|
desktop/version.c: testament $(OBJROOT)/testament.h
|
|
|
|
# S_BROWSER are sources related to full browsers but are common
|
|
# between RISC OS, GTK, BeOS and AmigaOS builds
|
|
S_BROWSER := browser.c browser_window.c browser_history.c \
|
|
download.c frames.c netsurf.c cw_helper.c \
|
|
save_complete.c save_text.c selection.c textinput.c gui_factory.c \
|
|
save_pdf.c font_haru.c
|
|
|
|
S_BROWSER := $(addprefix desktop/,$(S_BROWSER))
|