summaryrefslogtreecommitdiff
path: root/beos/Makefile.target
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2010-10-29 00:54:27 +0000
committerVincent Sanders <vince@netsurf-browser.org>2010-10-29 00:54:27 +0000
commit802f58f10d1d733093b0c285a2ee8bfdf68de414 (patch)
tree56f8882897e9ca64a1257c11afec6caba22345e2 /beos/Makefile.target
parent8814bca33e515bcb9110dbdc9e0f44285dd5bb47 (diff)
downloadnetsurf-802f58f10d1d733093b0c285a2ee8bfdf68de414.tar.gz
netsurf-802f58f10d1d733093b0c285a2ee8bfdf68de414.tar.bz2
Futher simplification of the makefile
Use target makefiles to set build sources svn path=/trunk/netsurf/; revision=10916
Diffstat (limited to 'beos/Makefile.target')
-rw-r--r--beos/Makefile.target23
1 files changed, 23 insertions, 0 deletions
diff --git a/beos/Makefile.target b/beos/Makefile.target
index 09eda57ba..9225a10bc 100644
--- a/beos/Makefile.target
+++ b/beos/Makefile.target
@@ -79,3 +79,26 @@
$(eval $(call pkg_config_find_and_add,PNG,libpng,PNG ))
endif
+# ----------------------------------------------------------------------------
+# Source file setup
+# ----------------------------------------------------------------------------
+
+# S_BEOS are sources purely for the BeOS build
+S_BEOS := beos_about.cpp beos_bitmap.cpp beos_fetch_rsrc.cpp \
+ beos_filetype.cpp beos_font.cpp beos_gui.cpp beos_login.cpp \
+ beos_options.cpp beos_plotters.cpp beos_save_complete.cpp \
+ beos_scaffolding.cpp beos_search.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))
+RDEP_BEOS := adblock.css beosdefault.css default.css ca-bundle.txt \
+ messages
+RDEP_BEOS := $(addprefix beos/res/,$(RDEP_BEOS)) \
+ $(wildcard beos/res/throbber/throbber*.png)
+
+
+# complete source file list
+SOURCES := $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_BEOS)
+EXETARGET := NetSurf