Files
ede/tools/capone/src/Jamfile
Sanel Zukan e19d0e46d5 Replaced random-next with C version, which yields a much better random number generator.
Added shuffle-vector! for inplace random shuffling in a vector
2008-10-30 15:24:19 +00:00

29 lines
856 B
Plaintext

#
# $Id$
#
# Part of Equinox Desktop Environment (EDE).
# Copyright (c) 2008 EDE Authors.
#
# This program is licenced under terms of the
# GNU General Public Licence version 2 or newer.
# See COPYING for details.
SubDir TOP tools capone src ;
PCRE_SRC = pcre/pcre.c ;
ObjectCcFlags $(PCRE_SRC) : $(GLOBALFLAGS) ;
Library $(SUBDIR)/pcre/libpcre : $(PCRE_SRC) ;
SCHEME_SRC = scheme.c dynload.c ;
ObjectCcFlags $(SCHEME_SRC) : -DUSE_STRLWR=1 -DUSE_DL=1 -DUSE_MATH=1 -DUSE_ASCII_NAMES=0 -DINLINE=inline ;
CAPONE_SRC = capone.cpp $(SCHEME_SRC) dbus.cpp re.cpp sys.cpp ;
#ObjectC++Flags $(CAPONE_SRC) : -pg ;
#ObjectCcFlags $(CAPONE_SRC) : -g3 -pg ;
EdeProgram capone : $(CAPONE_SRC) ;
LinkAgainst capone : -Lpcre -lpcre -ledelib_dbus -ldbus-1 -ledelib -lfltk -ldl -lm -lXext -lXft -lX11 ;
#LINKFLAGS on capone = [ on capone return $(LINKFLAGS) ] -pg ;