Skip to content
Snippets Groups Projects
Commit 4c06ae4b authored by BaM's avatar BaM
Browse files

makefile update

git-svn-id: svn+ssh://svn.in2p3.fr/class@396 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 4870ef04
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ int main(int argc, char** argv)
CLASSRead* DataRead = new CLASSRead(VFileName[0]);
for (int i = 1; i < (int)VFileName.size(); i++)
{
cout << "FIle "<< i << endl;
cout << "File "<< i << endl;
DataRead->AddFile(VFileName[i]);
}
DataRead->ReadName();
......
......@@ -38,18 +38,27 @@ main = CLASSGui
OBJS = $(subO) $(mainO)
all: $(OBJS)
$(LD) $(LDFLAGS) $(OBJS) $(LIBS) $(GLIBS) -o $(main)
mv $(main) bin/
@mkdir -p bin
@mv $(main) bin/
@echo "$(main) done"
@echo "CLASSGui is now available in $(CLASS_PATH)/Gui/bin !!"
clean:
@rm -f $(OBJS)
.SUFFIXES: .cxx
###
CLASSRead.o: CLASSRead.hxx \
CLASSPlotElement.hxx
......
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