IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2833 for trunk/Ohana/src/opihi


Ignore:
Timestamp:
Dec 27, 2004, 2:30:56 PM (22 years ago)
Author:
eugene
Message:

mods to makefiles to fix solaris compile

Location:
trunk/Ohana/src/opihi
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/Makefile

    r2774 r2833  
    3333
    3434$(PROGRAM) $(LIBS) $(EXTRAS):
    35         if [ -e "$@" ]; then (cd $@ && make); fi
     35        if [ -d "$@" ]; then (cd $@ && make); fi
    3636
    3737%.install:
    38         if [ -e "$*" ]; then make $*; fi
    39         if [ -e "$*" ]; then (cd $* && make install); fi
     38        if [ -d "$*" ]; then make $*; fi
     39        if [ -d "$*" ]; then (cd $* && make install); fi
    4040
    4141%.clean:
    42         if [ -e "$*" ]; then (cd $* && make clean); fi
     42        if [ -d "$*" ]; then (cd $* && make clean); fi
    4343
    4444.PHONY: $(PROGRAM) $(LIBS)
  • trunk/Ohana/src/opihi/cmd.astro/Makefile

    r2598 r2833  
    7676        rm -f $@
    7777        ar rcv $@ $^
    78         ranlib $@
     78        $(RANLIB) $@
    7979        @echo "compiled library $*"
    8080        @echo ""
  • trunk/Ohana/src/opihi/cmd.basic/Makefile

    r2598 r2833  
    7676        rm -f $@
    7777        ar rcv $@ $^
    78         ranlib $@
     78        $(RANLIB) $@
    7979        @echo "compiled library $*"
    8080        @echo ""
  • trunk/Ohana/src/opihi/cmd.data/Makefile

    r2826 r2833  
    138138        rm -f $@
    139139        ar rcv $@ $^
    140         ranlib $@
     140        $(RANLIB) $@
    141141        @echo "compiled library $*"
    142142        @echo ""
  • trunk/Ohana/src/opihi/dimm/Makefile

    r2799 r2833  
    8585        rm -f $@
    8686        ar rcv $@ $^
    87         ranlib $@
     87        $(RANLIB) $@
    8888        @echo "compiled library $*"
    8989        @echo ""
  • trunk/Ohana/src/opihi/dvo/Makefile

    r2822 r2833  
    117117        rm -f $@
    118118        ar rcv $@ $^
    119         ranlib $@
     119        $(RANLIB) $@
    120120        @echo "compiled library $*"
    121121        @echo ""
  • trunk/Ohana/src/opihi/dvo2/Makefile

    r2799 r2833  
    6565        rm -f $@
    6666        ar rcv $@ $^
    67         ranlib $@
     67        $(RANLIB) $@
    6868        @echo "compiled library $*"
    6969        @echo ""
  • trunk/Ohana/src/opihi/lib.data/Makefile

    r2598 r2833  
    6060        rm -f $@
    6161        ar rcv $@ $^
    62         ranlib $@
     62        $(RANLIB) $@
    6363        @echo "compiled library $*"
    6464        @echo ""
  • trunk/Ohana/src/opihi/lib.shell/Makefile

    r2598 r2833  
    8585        rm -f $@
    8686        ar rcv $@ $^
    87         ranlib $@
     87        $(RANLIB) $@
    8888        @echo "compiled library $*"
    8989        @echo ""
  • trunk/Ohana/src/opihi/lib.shell/stack_math.c

    r2801 r2833  
    11141114  if (!strcmp (op, "sqrt"))  {    *out = sqrt (*M1);          }
    11151115
    1116   if (!strcmp (op, "sinh"))  {    *out = sinhf (*M1);         }
    1117   if (!strcmp (op, "cosh"))  {    *out = coshf (*M1);         }
    1118   if (!strcmp (op, "asinh")) {    *out = asinhf (*M1);        }
    1119   if (!strcmp (op, "acosh")) {    *out = acoshf (*M1);        }
     1116  if (!strcmp (op, "sinh"))  {    *out = sinh (*M1);         }
     1117  if (!strcmp (op, "cosh"))  {    *out = cosh (*M1);         }
     1118  if (!strcmp (op, "asinh")) {    *out = asinh (*M1);        }
     1119  if (!strcmp (op, "acosh")) {    *out = acosh (*M1);        }
    11201120
    11211121  if (!strcmp (op, "sin"))   {    *out = sin (*M1);           }
     
    11701170  if (!strcmp (op, "sqrt"))  { for (i = 0; i < Nx; i++, out++, M1++) { *out = sqrt(*M1);         }}
    11711171
    1172   if (!strcmp (op, "sinh"))   { for (i = 0; i < Nx; i++, out++, M1++) { *out = sinhf(*M1);       }}
    1173   if (!strcmp (op, "cosh"))   { for (i = 0; i < Nx; i++, out++, M1++) { *out = coshf(*M1);       }}
    1174   if (!strcmp (op, "asinh"))  { for (i = 0; i < Nx; i++, out++, M1++) { *out = asinhf(*M1);      }}
    1175   if (!strcmp (op, "acosh"))  { for (i = 0; i < Nx; i++, out++, M1++) { *out = acoshf(*M1);      }}
     1172  if (!strcmp (op, "sinh"))   { for (i = 0; i < Nx; i++, out++, M1++) { *out = sinh(*M1);       }}
     1173  if (!strcmp (op, "cosh"))   { for (i = 0; i < Nx; i++, out++, M1++) { *out = cosh(*M1);       }}
     1174  if (!strcmp (op, "asinh"))  { for (i = 0; i < Nx; i++, out++, M1++) { *out = asinh(*M1);      }}
     1175  if (!strcmp (op, "acosh"))  { for (i = 0; i < Nx; i++, out++, M1++) { *out = acosh(*M1);      }}
    11761176
    11771177  if (!strcmp (op, "sin"))   { for (i = 0; i < Nx; i++, out++, M1++) { *out = sin(*M1);          }}
     
    12351235  if (!strcmp (op, "sqrt"))  { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sqrt(*M1);         }}
    12361236
    1237   if (!strcmp (op, "sinh"))  { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sinhf(*M1);        }}
    1238   if (!strcmp (op, "cosh"))  { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = coshf(*M1);        }}
    1239   if (!strcmp (op, "asinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = asinhf(*M1);       }}
    1240   if (!strcmp (op, "acosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = acoshf(*M1);       }}
     1237  if (!strcmp (op, "sinh"))  { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sinh(*M1);        }}
     1238  if (!strcmp (op, "cosh"))  { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = cosh(*M1);        }}
     1239  if (!strcmp (op, "asinh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = asinh(*M1);       }}
     1240  if (!strcmp (op, "acosh")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = acosh(*M1);       }}
    12411241
    12421242  if (!strcmp (op, "sin"))   { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = sin(*M1);          }}
  • trunk/Ohana/src/opihi/mana/Makefile

    r2827 r2833  
    7777        rm -f $@
    7878        ar rcv $@ $^
    79         ranlib $@
     79        $(RANLIB) $@
    8080        @echo "compiled library $*"
    8181        @echo ""
  • trunk/Ohana/src/opihi/pantasks/Makefile

    r2799 r2833  
    7171        rm -f $@
    7272        ar rcv $@ $^
    73         ranlib $@
     73        $(RANLIB) $@
    7474        @echo "compiled library $*"
    7575        @echo ""
Note: See TracChangeset for help on using the changeset viewer.