Skip to content
Snippets Groups Projects
Commit 98c39966 authored by Baptiste LENIAU's avatar Baptiste LENIAU
Browse files

Add the possibility to install the Gui binary in a wanted location. Add the...

Add the possibility to install the Gui binary in a wanted location. Add the path to Gui binary in PATH env var

git-svn-id: svn+ssh://svn.in2p3.fr/class@782 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 3eecfb71
No related branches found
No related tags found
No related merge requests found
......@@ -43,10 +43,10 @@ OBJS = $(subO) $(mainO)
all: $(OBJS)
$(LD) $(LDFLAGS) $(OBJS) $(LIBS) $(GLIBS) -o $(main)
@mkdir -p bin
@mv $(main) bin/
@mkdir -p $(Gui_bin_PATH)
@mv $(main) $(Gui_bin_PATH)
@echo "$(main) done"
@echo "CLASSGui is now available in $LIBDIR/../gui/bin "
@echo "CLASSGui is now available in $(Gui_bin_PATH) "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment