From 2df3550fcc92e3bce69e3ce353622fc6fac85a7c Mon Sep 17 00:00:00 2001 From: François Revel Date: Tue, 3 Jun 2008 19:51:54 +0000 Subject: Add BeOS sources. svn path=/trunk/netsurf/; revision=4254 --- Makefile.sources | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'Makefile.sources') diff --git a/Makefile.sources b/Makefile.sources index 037bcca93..a65ecc8a0 100644 --- a/Makefile.sources +++ b/Makefile.sources @@ -57,6 +57,16 @@ S_GTK := font_pango.c gtk_bitmap.c gtk_gui.c gtk_schedule.c \ gtk_history.c gtk_window.c gtk_filetype.c gtk_download.c S_GTK := $(addprefix gtk/,$(S_GTK)) +# 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)) @@ -117,6 +127,11 @@ SOURCES := $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_GTK) 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 -- cgit v1.2.3