]> www.ginac.de Git - ginac.git/commitdiff
- Makefile.am: target clean should remove G__*.
authorRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Fri, 15 Dec 2000 20:46:29 +0000 (20:46 +0000)
committerRichard Kreckel <Richard.Kreckel@uni-mainz.de>
Fri, 15 Dec 2000 20:46:29 +0000 (20:46 +0000)
- ginaccint.bin.cpp: check for recent enough cint.

cint/Makefile.am
cint/ginaccint.bin.cpp

index d0d8e93c6517bce9f17d4aac3100745c2cbbad8b..914e5ae0bcb22e115c7f2485e6c4d673be1fc1e2 100644 (file)
@@ -19,6 +19,7 @@ makecint_clean:
        (if [ -f Makefile.makecint ]; then $(MAKE) -f Makefile.makecint clean; fi)
 
 clean: makecint_clean
+       rm -f G__*
 
 distclean: makecint_clean
-       rm -f Makefile.makecint G__*
+       rm -f Makefile.makecint
index dca000f3ac05bc0ed9017fc415a8a8d89e0fe246..9f36181b7afdcafa9a262b94ab97d548bdedc43c 100644 (file)
@@ -3,8 +3,8 @@
 
 #include "G__ci.h"   /* G__atpause is defined in G__ci.h */
 
-#if (!defined(G__CINTVERSION)) || (G__CINTVERSION < 501439)
-#error You need at least cint 5.14.39 to compile GiNaC-cint. Download it via http from root.cern.ch/root/Cint.html or via ftp from ftpthep.physik.uni-mainz.de/pub/cint
+#if (!defined(G__CINTVERSION)) || (G__CINTVERSION < 501460)
+#error You need at least cint 5.14.60 to compile GiNaC-cint. Download it via http from root.cern.ch/root/Cint.html or via ftp from ftpthep.physik.uni-mainz.de/pub/cint
 #endif // (!defined(G__CINTVERSION)) || (G__CINTVERSION < 501438)
 
 #include <iostream>