Gotthard software added to MAkefile and settings directory

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorsPackage@2 08cae9ef-cb74-4d14-b03a-d7ea46f178d7
This commit is contained in:
bergamaschi
2011-10-13 11:41:48 +00:00
parent 51f399f3ed
commit 09ef669f17
11 changed files with 63 additions and 3 deletions

View File

@ -5,12 +5,12 @@
WD=$(shell pwd)
LIBRARYDIR=$(WD)/slsDetectorSoftware
TLIBRARYDIR=$(WD)/TMythenDetector
CLIENTDIR=$(WD)/mythenClient
CLIENTDIR=$(WD)/slsDetectorClient
GUIDIR=$(WD)/mythenGUI
LIBDOCDIR=$(WD)/slsDetectorSoftware
all: lib mythenClient mythenGUI
all: lib mythenClient gotthardClient mythenGUI
lib:
@ -20,7 +20,11 @@ Tlib:
cd $(TLIBRARYDIR) && $(MAKE) lib
mythenClient: lib
cd $(CLIENTDIR) && $(MAKE)
cd $(CLIENTDIR) && $(MAKE) mythen
mv $(CLIENTDIR)/bin/* bin/
gotthardClient: lib
cd $(CLIENTDIR) && $(MAKE) gotthard
mv $(CLIENTDIR)/bin/* bin/
mythenGUI: lib Tlib
@ -88,6 +92,7 @@ help:
@echo "make lib compile library"
@echo "make tlib compile Root/Qt library"
@echo "make mythenClient compile mythenClient"
@echo "make gotthardClient compile gotthardClient"
@echo "make mythenGUI compile mythenGUI"
@echo "make install_client install mythenClient"
@echo "make install_gui install mythenGUI"