IUpred integration
authorpvtroshin <pvtroshin@e3abac25-378b-4346-85de-24260fe3988d>
Thu, 16 Jun 2011 13:13:19 +0000 (13:13 +0000)
committerpvtroshin <pvtroshin@e3abac25-378b-4346-85de-24260fe3988d>
Thu, 16 Jun 2011 13:13:19 +0000 (13:13 +0000)
git-svn-id: link to svn.lifesci.dundee.ac.uk/svn/barton/ptroshin/JABA2@4272 e3abac25-378b-4346-85de-24260fe3988d

binaries/src/compilebin.sh
binaries/src/iupred/Makefile

index f4563a6..405921e 100644 (file)
@@ -80,6 +80,5 @@ cd iupred
 make clean
 make 
 echo "DONE"
-chmod +x iupred
 cd ..
 
index 0da3282..72f14c8 100644 (file)
@@ -1,7 +1,6 @@
 CFLAGS = -O3 -funroll-loops -Winline -I./
 LDLIBS = -lm 
 
-OBJ = *.o
 EXE = iupred
 
 RM = rm -f
@@ -21,7 +20,7 @@ $(CPPOBJ): %.o: %.c
        $(CPP) $< -o $@
 
 iupred: $(CPPOBJ)
-       $(LD) -o iupred $(CPPOBJ) $(LDLIBS)
+       $(LD) -o $(EXE) $(CPPOBJ) $(LDLIBS)
        strip $(EXE)
 clean:
        $(RM) $(CPPOBJ)