1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/devel/amulet/files/Makefile.vars.gcc.FreeBSD
Jun Kuriyama c474f947d2 A free C++ GUI library.
Submitted by:	Filip Bovyn <bovynf@awe.be>
PR:		ports/4192
1998-05-12 14:04:52 +00:00

62 lines
1.6 KiB
Makefile

CC = g++
LD = ld
##
## Parameters for Amulet programs
##
# X11 directories, uncomment and set if necessary
X11_INC = -I/usr/X11R6/include
X11_LIB = -L/usr/X11R6/lib
# directory where Amulet will (eventually) be installed
# defaults to its current location (AMULET_DIR)
AMULET_ROOT=$(PREFIX)/share/amulet
# compiler flags for Amulet programs
AM_CFLAGS = -I$(AMULET_DIR)/include $(X11_INC) -Wall \
-DGCC -DMEMORY
# libraries needed by Amulet (interactors needs math library)
AM_LIBS = $(X11_LIB) -lX11 -lm
##
## Parameters for the Amulet library
##
# additional compiler flags for development version
AM_DEVELOP = -O2 -DDEBUG -g -DAMULET2_CONVERSION
# additional compiler flags for release version
AM_RELEASE = -O2 -DAMULET2_CONVERSION
# additional compiler flags for optimized version with inspector and debugging enabled
AM_INHOUSE = -DDEBUG -g
# additional compiler flags for optimized version with inspector but no debugging symbols
AM_NODEBUGSYM = -O2 -DDEBUG -DAMULET2_CONVERSION
# Flags used to build the sample programs
AM_SAMPLE_FLAGS = $(AM_NODEBUGSYM)
# Default set of extra compiler flags
OP = $(AM_NODEBUGSYM)
# extra link flags for library test programs
AM_LIB_LDFLAGS =
# Makefile identifying the gem files for this platform
AM_GEM_SOURCE = Makefile.gem.X
# Makefile that knows how to make the Amulet library for this platform
AM_SHARED_LIB_MAKE = Makefile.lib.gcc.shared
AM_STATIC_LIB_MAKE = Makefile.lib.unix.static
# Set of library variants for make libs
# Note: The develop-shared library will also be build when
# we build the samples programs. If we add it here it would
# be build twice.
AM_LIBS_TO_MAKE = release-shared release-static