
Now that notify-sharp has a 3.0 release that depends on GTK 3, we can require the proper pkg-config module. Remove notify-sharp.m4 file, and the useless call to the macro that was defined in it. Also remove some unneeded variables in build.environment.mk.
31 lines
852 B
Makefile
Executable file
31 lines
852 B
Makefile
Executable file
# Initializers
|
|
MONO_BASE_PATH =
|
|
|
|
# Install Paths
|
|
DEFAULT_INSTALL_DIR = $(pkglibdir)
|
|
DIR_BIN = $(top_builddir)/bin
|
|
|
|
# External libraries to link against, generated from configure
|
|
LINK_SYSTEM = -r:System
|
|
LINK_MONO_POSIX = -r:Mono.Posix
|
|
|
|
LINK_GLIB = $(GLIBSHARP_LIBS)
|
|
LINK_GTK = $(GTKSHARP_LIBS)
|
|
LINK_GNOME = $(GNOME_SHARP_LIBS)
|
|
LINK_WEBKIT = $(WEBKITGTK_SHARP_LIBS)
|
|
LINK_APP_INDICATOR = $(APP_INDICATOR_LIBS)
|
|
|
|
REF_SPARKLELIB = $(LINK_SYSTEM) $(LINK_MONO_POSIX)
|
|
LINK_SPARKLELIB = -r:$(DIR_BIN)/SparkleLib.dll
|
|
LINK_SPARKLELIB_DEPS = $(REF_SPARKLELIB) $(LINK_SPARKLELIB)
|
|
|
|
REF_SPARKLESHARE = $(LINK_GTK) $(LINK_SPARKLELIB_DEPS) $(LINK_APP_INDICATOR) $(LINK_WEBKIT)
|
|
|
|
# Cute hack to replace a space with something
|
|
colon:= :
|
|
empty:=
|
|
space:= $(empty) $(empty)
|
|
|
|
# Build path to allow running uninstalled
|
|
RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
|
|
|