From 6988e11a4450aa84c1caf94961e1d955970b1fd0 Mon Sep 17 00:00:00 2001 From: bergamaschi Date: Tue, 25 Sep 2012 12:19:41 +0000 Subject: [PATCH] make also takes care of the calibration wizards git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorsPackage@18 08cae9ef-cb74-4d14-b03a-d7ea46f178d7 --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 049be5d22..5a53ca8c7 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ LIBDOCDIR=$(WD)/slsDetectorSoftware -all: lib slsDetectorClient slsDetectorGUI +all: lib slsDetectorClient lib: cd $(LIBRARYDIR) && $(MAKE) lib FLAGS=$(FLAGS) @@ -30,11 +30,18 @@ slsDetectorGUI: lib $(shell test -d bin || mkdir -p bin) mv $(GUIDIR)/bin/* bin/ +calWiz: + cd calibrationWizards && $(MAKE) FLAGS=$(FLAGS) + $(shell test -d bin || mkdir -p bin) + mv calibrationWizards/energyCalibrationWizard calibrationWizards/angularCalibrationWizard bin/ + cp calibrationWizards/manual/*.pdf manual/ + clean: rm -rf bin/sls_detector_* cd $(LIBRARYDIR) && $(MAKE) clean cd $(CLIENTDIR) && $(MAKE) clean cd $(GUIDIR) && $(MAKE) clean + cd calibrationWizards && $(MAKE) clean install_lib: cd $(LIBRARYDIR) && $(MAKE) install_lib DESTDIR=$(INSTALLROOT)/$(LIBDIR)