IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 41684 for trunk


Ignore:
Timestamp:
Jul 6, 2021, 11:09:52 AM (5 years ago)
Author:
eugene
Message:

adding tool to predict known asteroid positions for teleff

Location:
trunk/Ohana/src/tools
Files:
1 added
1 edited

Legend:

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

    r40547 r41684  
    6161$(PROGRAMS) : % : $(BIN)/%.$(ARCH)
    6262
     63$(BIN)/mpcorb_predict.$(ARCH) : $(SRC)/mpcorb_predict.$(ARCH).o
     64        @if [ ! -d $(BIN) ]; then mkdir -p $(BIN); fi
     65        $(CC) $(FULL_CFLAGS) -o $@ $^ $(FULL_LDFLAGS) -lsla
     66        @echo "compiled $*"
     67        @echo ""
     68
     69$(DESTBIN)/mpcorb_predict: $(BIN)/mpcorb_predict.$(ARCH)
     70        @if [ ! -d $(DESTBIN) ]; then mkdir -p $(DESTBIN); fi
     71        rm -f $(DESTBIN)/mpcorb_predict
     72        cp $(BIN)/mpcorb_predict.$(ARCH) $(DESTBIN)/mpcorb_predict
     73        @echo "installed mpcorb_predict"
     74        @echo ""
     75
     76$(DESTLIB)/libsla.a:
     77        echo "missing SLALIB libsla.a: install in $(DESTLIB)"
     78
     79$(DESTINC)/slalib.h:
     80        echo "missing SLALIB slalib.h: install in $(DESTINC)"
     81
     82mpcorb_predict: $(DESTBIN)/mpcorb_predict $(DESTLIB)/libsla.a $(DESTINC)/slalib.h
     83
    6384%.clean:
    6485        rm -f $(SRC)/$*.$(ARCH).o
Note: See TracChangeset for help on using the changeset viewer.