IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 13, 2006, 9:22:35 AM (20 years ago)
Author:
eugene
Message:

working on the client/server interactions for pantasks

File:
1 edited

Legend:

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

    r6687 r7892  
    2525# sched user commands and support functions ########################
    2626
     27single = \
     28$(SDIR)/pantasks.$(ARCH).o
     29
    2730funcs = \
    28 $(SDIR)/pantasks.$(ARCH).o \
    2931$(SDIR)/init.$(ARCH).o \
    3032$(SDIR)/CheckJobs.$(ARCH).o \
     
    6365$(SDIR)/version.$(ARCH).o
    6466
     67client = \
     68$(SDIR)/pantasks_client.$(ARCH).o \
     69$(SDIR)/client_shell.$(ARCH).o \
     70$(SDIR)/invalid.$(ARCH).o \
     71$(SDIR)/init_client.$(ARCH).o \
     72$(SDIR)/SocketOps.$(ARCH).o
     73
     74server = \
     75$(SDIR)/pantasks_server.$(ARCH).o \
     76$(SDIR)/ListenClients.$(ARCH).o \
     77$(SDIR)/CheckPassword.$(ARCH).o \
     78$(SDIR)/SocketOps.$(ARCH).o
     79
    6580libs = \
    6681$(DESTLIB)/libshell.a \
     
    7186
    7287pantasks: $(BIN)/pantasks.$(ARCH)
     88$(BIN)/pantasks.$(ARCH) : $(single) $(funcs) $(cmds) $(libs)
    7389
    74 $(BIN)/pantasks.$(ARCH) : $(funcs) $(cmds) $(libs)
     90pantasks_client: $(BIN)/pantasks_client.$(ARCH)
     91$(BIN)/pantasks_client.$(ARCH) : $(client) $(libs)
    7592
    76 install: $(DESTBIN)/pantasks help
     93pantasks_server: $(BIN)/pantasks_server.$(ARCH)
     94$(BIN)/pantasks_server.$(ARCH) : $(server) $(funcs) $(cmds) $(libs)
     95        @if [ ! -d $(BIN) ]; then mkdir -p $(BIN); fi
     96        $(CC) -o $@ $^ $(LFLAGS) -lpthread
     97
     98pantasks_client.install: $(DESTBIN)/pantasks_client
     99pantasks_server.install: $(DESTBIN)/pantasks_server
     100
     101install: $(DESTBIN)/pantasks $(DESTBIN)/pantasks_client $(DESTBIN)/pantasks_server help
    77102
    78103help: cmd.basic.help cmd.data.help cmd.astro.help pantasks.help
    79104
    80 .PHONY: pantasks
     105.PHONY: pantasks pantasks_client pantasks_server
    81106
    82107include ../Makefile.Common
Note: See TracChangeset for help on using the changeset viewer.