# you need to change this to where your version of python is installed. # tell make where to find python header files RP_INSTALL_BASE = @prefix@ # define the top of the rappture directory structure RP_BASE = @RP_BASE@ CC = @CC@ CXX = @CXX@ DEBUG = -g -Wall DEBUG_PLUS = -g -DDEBUG LN = @LN@ # define our directories # INCLUDES_DIR = $(RP_BASE)/src BIN_DIR = $(RP_BASE)/bin LIB_DIR = $(RP_INSTALL_BASE)/lib # $(RP_BASE)/src SRC_DIR = $(RP_BASE)/src TEST_DIR = $(RP_BASE)/test LIB_RAPPTURE = -Wl,-rpath,$(LIB_DIR) -L$(LIB_DIR) -lrappture INCL_CORE = -I $(INCLUDES_DIR)/core INCL_CEE = -I $(INCLUDES_DIR)/cee INCL_FORTRAN = -I $(INCLUDES_DIR)/fortran .PHONY: all clean distclean src jobs all: src jobs src: $(MAKE) -C src all jobs: $(MAKE) -C jobs all clean: distclean: clean $(RM) Makefile