You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#Configuration for build kicadKICAD_BIN = $(HOME)/install/kicad/macosx
RESCOMP = /Developer/Tools/Rez -d __DARWIN__ -t APPL -d __WXMAC__ -i .SETFILE = /Developer/Tools/SetFile
CPPFLAGS = -D__UNIX__ -Wall -I../include `wx-config --cxxflags`LDFLAGS =CC = g++LD = g++
# turn on/off debugging for all executables, only tested without KICAD_PYTHONDEBUG = 1
ifeq ($(DEBUG), 1)CPPFLAGS += -gelseCPPFLAGS += -O2endif
# turn on/off universal binariesUNIVERSAL = 0
ifeq ($(UNIVERSAL), 1)CPPFLAGS += -arch i386 -arch ppcendif
# You must comment or uncomment this line to disable/enable python support#KICAD_PYTHON = 1 ifdef KICAD_PYTHONPYLIBS= -L/usr/libPYLIBS+= -L /usr/include/pythonPYLIBS+= -lpython2.4PYLIBS+= -lboost_pythonEXTRACPPFLAGS+=-I /usr/include/python2.4 -DKICAD_PYTHON -fno-strict-aliasingendif
LIBS = ../common/common.a `wx-config --libs` $(PYLIBS)LIBS3D = ../common/common.a `wx-config --libs std,gl` -framework OpenGL $(PYLIBS)
|