mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
29 lines
856 B
Plaintext
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 ;
|