# do not change below this line # Include common definitions include Makefile.include INSTALLROOT ?= $(PWD) BINDIR ?= $(INSTALLROOT)/bin DOCDIR ?= $(INSTALLROOT)/docs LIBDIR ?= $(INSTALLROOT)/bin INCDIR ?= $(INSTALLROOT)/include WD = $(shell pwd) LIBRARYDIR = $(WD)/slsDetectorSoftware LIBRARYRXRDIR = $(WD)/slsReceiverSoftware CLIENTDIR = $(LIBRARYDIR)/slsDetectorClient GUIDIR = $(WD)/slsDetectorGui RECEIVERDIR = $(LIBRARYRXRDIR)/slsReceiver CALWIZDIR = $(WD)/calibrationWizards MANDIR = $(WD)/manual CALIBDIR = $(LIBRARYRXRDIR)/slsDetectorCalibration INCLUDES=-I. -I$(LIBRARYDIR)/commonFiles -I$(LIBRARYDIR)/slsDetector -I$(LIBRARYRXRDIR)/MySocketTCP -I$(LIBRARYDIR)/usersFunctions -I$(LIBRARYDIR)/multiSlsDetector -I$(LIBRARYDIR)/slsDetectorUtils -I$(LIBRARYDIR)/slsDetectorCommand -I$(LIBRARYDIR)/slsDetectorAnalysis -I$(LIBRARYDIR)/slsReceiverInterface -I$(LIBRARYRXRDIR)/includes -I$(ASM) INCLUDESRXR=-I. -I$(LIBRARYRXRDIR)/MySocketTCP -I$(LIBRARYRXRDIR)/includes -I$(RECEIVERDIR) -I$(RECEIVERDIR)/eigerReceiver -I$(CALIBDIR) -I$(ASM) #-I$(LIBRARYDIR)/slsReceiverInterface .PHONY: all nonstatic static lib libreceiver textclient receiver gui stextclient sreceiver all: lib textclient receiver gui nonstatic: lib libreceiver textclient receiver gui static: lib libreceiver stextclient sreceiver gui lib: cd $(LIBRARYDIR) && $(MAKE) FLAGS='$(FLAGS)' DESTDIR='$(LIBDIR)' INCLUDES='$(INCLUDES)' libreceiver: cd $(LIBRARYRXRDIR) && $(MAKE) FLAGS='$(FLAGS)' DESTDIR='$(LIBDIR)' INCLUDES='$(INCLUDESRXR)' stextclient: slsDetectorClient_static slsDetectorClient: textclient slsDetectorClient_static: lib cd $(CLIENTDIR) && $(MAKE) static_clients FLAGS='$(FLAGS)' LIBS='$(LDFLAGDET)' DESTDIR='$(BINDIR)' LIBDIR='$(LIBDIR)' INCLUDES='$(INCLUDES)' textclient: lib cd $(CLIENTDIR) && $(MAKE) FLAGS='$(FLAGS)' DESTDIR='$(BINDIR)' LIBDIR='$(LIBDIR)' LIBS='$(LDFLAGDET)' INCLUDES='$(INCLUDES)' slsReceiver: receiver slsReceiver_static: receiver receiver: libreceiver cd $(RECEIVERDIR) && $(MAKE) receiver FLAGS='$(FLAGS)' DESTDIR='$(BINDIR)' LIBDIR='$(LIBDIR)' LIBS='$(LDFLAGRXR)' INCLUDES='$(INCLUDESRXR)' sreceiver: libreceiver cd $(RECEIVERDIR) && $(MAKE) static_receiver FLAGS='$(FLAGS)' DESTDIR='$(BINDIR)' LIBDIR='$(LIBDIR)' LIBS='$(LDFLAGRXR)' INCLUDES='$(INCLUDESRXR)' slsDetectorGUI: lib cd $(GUIDIR) && $(MAKE) DESTDIR='$(BINDIR)' LIBDIR='$(LIBDIR)' INCLUDES='$(INCLUDES)' LDFLAGDET='-L$(LIBDIR) -lSlsDetector' calWiz: cd $(CALWIZDIR) && $(MAKE) DESTDIR=$(BINDIR) #FLAGS=$(FLAGS) LDFLAGDET=$(LDFLAGDET) INCLUDES=$(INCLUDES) gui: slsDetectorGUI doc: $(shell test -d $(DOCDIR) || mkdir -p $(DOCDIR)) cd manual && make all DESTDIR=$(DOCDIR) htmldoc: make doc $(shell test -d $(DOCDIR) || mkdir -p $(DOCDIR)) cd manual && make html DESTDIR=$(DOCDIR) clean: cd $(BINDIR) && rm -rf sls_detector_* slsDetectorGui slsReceiver angularCalibrationWizard energyCalibrationWizard cd $(LIBDIR) && rm -rf libSlsDetector.so libSlsDetector.a libSlsReceiver.so libSlsReceiver.a cd $(LIBRARYDIR) && $(MAKE) clean cd $(LIBRARYRXRDIR) && $(MAKE) clean cd $(CLIENTDIR) && $(MAKE) clean cd $(GUIDIR) && $(MAKE) clean cd $(CALWIZDIR) && $(MAKE) clean cd manual && $(MAKE) clean cd $(DOCDIR) && rm -rf * #install_lib: # cd $(LIBRARYDIR) && $(MAKE) install DESTDIR=$(LIBDIR) INCLUDES=$(INCLUDES) # cd $(LIBRARYDIR) && $(MAKE) install_inc DESTDIR=$(INCDIR) mythen_virtual: cd $(LIBRARYDIR) && $(MAKE) mythenVirtualServer DESTDIR=$(BINDIR) gotthard_virtual: cd $(LIBRARYDIR) && $(MAKE) gotthardVirtualServer DESTDIR=$(BINDIR) install_client: textclient slsReceiver install_gui: gui confinstall: make conf;\ make install install_lib: make lib;\ make libreceiver; \ make textclient; \ make slsReceiver; \ make doc; \ make htmldoc; \ cd $(LIBRARYDIR) && $(MAKE) install_inc DESTDIR=$(INCDIR); \ cd $(LIBRARYRXRDIR) && $(MAKE) install_inc DESTDIR=$(INCDIR); install: make install_lib; \ make gui; \ make calWiz; \ cd $(LIBRARYDIR) && $(MAKE) install_inc DESTDIR=$(INCDIR);\ cd $(LIBRARYRXRDIR) && $(MAKE) install_inc DESTDIR=$(INCDIR); conf: set -e; \ . ./configure; \ @echo "INSTALLROOT is $(INSTALLROOT)" @echo "BINDIR is $(BINDIR)" @echo "LIBDIR is $(LIBDIR)" @echo "INCDIR is $(INCDIR)" @echo "DOCDIR is $(DOCDIR)" help: @echo "Targets:" @echo "make all compile library, text clients, data reciever" @echo "make lib compile library" @echo "make libreceiver compile receiver library" @echo "make textclient compile the slsDetectorClient dynamically linking the libraries" @echo "make stextclient compile slsDetectorClient statically linking the libraries" @echo "make receiver compile the slsReciever dynamically linking the libraries" @echo "make sreceiver compile the slsReciever statically linking the libraries" @echo "make gui compile slsDetectorGUI - requires a working Qt4 and Qwt installation" @echo "make calWiz compile the calibration wizards - requires a working Root installation" @echo "make doc compile pdf documentation" @echo "make htmldoc compile html (and pdf) documentation" @echo "make install_lib installs the libraries, the text clients, the documentation and the includes for the API" @echo "make install installs all software, including the gui, the cal wizards and the includes for the API" @echo "make confinstall installs all software, including the gui, the cal wizards and the includes for the API, prompting for the install paths" @echo "make clean remove object files and executables" @echo "make help lists possible targets" @echo "" @echo "" @echo "Variables - to change them run :" @echo "INSTALLROOT=: installation root di r, default $PWD" @echo "BINDIR=: binary installation dir below INSTALLROOT, default bin" @echo "LIBDIR=: library installation dir below INSTALLROOT, default lib" @echo "INCDIR=: header installation dir below INSTALLROOT, default include" @echo "DOCDIR=: documentation installation dir below INSTALLROOT, default doc"