mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-22 22:41:30 +03:00
d204d6d555
This removes the global PDF_Password interface that had completely bitrotted and moves it into the standard misc operation table with a sensible defualt implementation. This also cleans up and fixes the gtk frontend implementation of the pdf password callback so it compiles. Finally this moves the implementation to a sensible place alongside the other exporters reducing target makefile complexity futher.
20 lines
710 B
Makefile
20 lines
710 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 \
|
|
sslcert_viewer.c textarea.c thumbnail.c tree.c version.c \
|
|
system_colour.c global_history.c treeview.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_history.c download.c frames.c netsurf.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))
|