8a836e1b10
* This also updates the BuildFactory Automakefile to make use of libyab.so. * fixattributes.sh has been integrated into the Makefile, so is no longer required. * yab binaries will now depend on libyab.so, including yab itself.
41 lines
568 B
Makefile
41 lines
568 B
Makefile
##
|
|
## yab Haiku BuildFactory Makefile
|
|
##
|
|
## (c) Jan Bungeroth 2009 - 2011
|
|
## Artistic License.
|
|
##
|
|
|
|
##
|
|
## Haiku stuff
|
|
##
|
|
HAIKUTAB = YabTabView.o
|
|
HAIKUOPT = -DHAIKU
|
|
|
|
##
|
|
## Use our own column list view
|
|
##
|
|
COLUMN = column/ColumnListView.o
|
|
|
|
##
|
|
## enable debug
|
|
##
|
|
# DBG = -g
|
|
#
|
|
|
|
##
|
|
## enable optimization
|
|
##
|
|
OPT = -O
|
|
#
|
|
|
|
##
|
|
## Libraries
|
|
##
|
|
##LIBPATH = -L/boot/home/config/lib
|
|
##LIBPATH = -L/boot/system/lib
|
|
LIBPATHS = $(shell findpaths B_FIND_PATH_DEVELOP_LIB_DIRECTORY)
|
|
LIBPATH=$(addprefix -L,$(LIBPATHS))
|
|
|
|
LIB = -lyab -lbe -lroot -ltranslation -ltracker -lmedia -lz
|
|
|