mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
including receiver in makefile
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorsPackage@23 08cae9ef-cb74-4d14-b03a-d7ea46f178d7
This commit is contained in:
12
Makefile
12
Makefile
@ -6,6 +6,7 @@ LIBRARYDIR=$(WD)/slsDetectorSoftware
|
|||||||
CLIENTDIR=$(WD)/slsDetectorClient
|
CLIENTDIR=$(WD)/slsDetectorClient
|
||||||
GUIDIR=$(WD)/slsDetectorGuiOriginal
|
GUIDIR=$(WD)/slsDetectorGuiOriginal
|
||||||
LIBDOCDIR=$(WD)/slsDetectorSoftware
|
LIBDOCDIR=$(WD)/slsDetectorSoftware
|
||||||
|
RECEIVERDIR=$(LIBRARYDIR)/slsDetectorReceiver
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -14,9 +15,9 @@ LIBDOCDIR=$(WD)/slsDetectorSoftware
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
all: lib slsDetectorClient_static #slsDetectorGUI
|
all: lib slsDetectorClient_static slsDetectorReceiver #slsDetectorGUI
|
||||||
|
|
||||||
nonstatic: lib slsDetectorClient slsDetectorGUI
|
nonstatic: lib slsDetectorClient slsDetectorReceiver slsDetectorGUI
|
||||||
|
|
||||||
lib:
|
lib:
|
||||||
cd $(LIBRARYDIR) && $(MAKE) lib FLAGS=$(FLAGS)
|
cd $(LIBRARYDIR) && $(MAKE) lib FLAGS=$(FLAGS)
|
||||||
@ -32,6 +33,12 @@ slsDetectorClient: lib
|
|||||||
$(shell test -d bin || mkdir -p bin)
|
$(shell test -d bin || mkdir -p bin)
|
||||||
mv $(CLIENTDIR)/bin/* bin/
|
mv $(CLIENTDIR)/bin/* bin/
|
||||||
|
|
||||||
|
slsDetectorReceiver: lib
|
||||||
|
cd $(RECEIVERDIR) && $(MAKE) FLAGS=$(FLAGS)
|
||||||
|
$(shell test -d bin || mkdir -p bin)
|
||||||
|
mv $(RECEIVERDIR)/bin/* bin/
|
||||||
|
|
||||||
|
|
||||||
slsDetectorGUI: lib
|
slsDetectorGUI: lib
|
||||||
cd $(GUIDIR) && $(MAKE) FLAGS=$(FLAGS)
|
cd $(GUIDIR) && $(MAKE) FLAGS=$(FLAGS)
|
||||||
$(shell test -d bin || mkdir -p bin)
|
$(shell test -d bin || mkdir -p bin)
|
||||||
@ -48,6 +55,7 @@ clean:
|
|||||||
cd $(LIBRARYDIR) && $(MAKE) clean
|
cd $(LIBRARYDIR) && $(MAKE) clean
|
||||||
cd $(CLIENTDIR) && $(MAKE) clean
|
cd $(CLIENTDIR) && $(MAKE) clean
|
||||||
cd $(GUIDIR) && $(MAKE) clean
|
cd $(GUIDIR) && $(MAKE) clean
|
||||||
|
cd $(RECEIVERDIR) && $(MAKE) clean
|
||||||
cd calibrationWizards && $(MAKE) clean
|
cd calibrationWizards && $(MAKE) clean
|
||||||
|
|
||||||
install_lib:
|
install_lib:
|
||||||
|
Reference in New Issue
Block a user