Changeset 10305 for trunk/Ohana/src/opihi/pantasks
- Timestamp:
- Nov 29, 2006, 3:59:20 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/pantasks/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/pantasks/Makefile
r10072 r10305 7 7 SDIR = $(HOME)/pantasks 8 8 # 9 DESTBIN = $( LBIN)10 DESTLIB = $(L LIB)11 DESTINC = $( LINC)12 DESTMAN = $( LMAN)13 DESTHLP = $( LHLP)/pantasks9 DESTBIN = $(BINDIR) 10 DESTLIB = $(LIBDIR) 11 DESTINC = $(INCDIR) 12 DESTMAN = $(MANDIR) 13 DESTHLP = $(HELPDIR)/pantasks 14 14 15 15 # compile flags 16 INCS = -I$(INC) -I$(LINC) -I$(XINC) 17 CFLAGS = $(INCS) -DHELPDIR_DEFAULT=$(DESTHLP) 16 CFLAGS = -I$(INC) -I$(INCDIR) $(INCDIRS) -DHELPDIR_DEFAULT=$(DESTHLP) 18 17 19 18 # link flags 20 LIBS = -L$(LIB) -L$(LLIB) -L$(XLIB) 21 LIBS1 = -lsocket -lnsl -lreadline $(TLIB) -ljpeg -ldvo -lkapa -lFITS -lohana -lX11 -lpthread -lm 19 LIBS1 = -ldvo -lkapa -lFITS -lohana $(LIBFLAGS) 22 20 LIBS2 = -lbasiccmd -ldatacmd -lastrocmd -lshell -ldata 23 LFLAGS = $(LIBS) $(LIBS2) $(LIBS1)21 LFLAGS = -L$(LIB) -L$(LIBDIR) $(LIBDIRS) $(LIBS2) $(LIBS1) 24 22 25 23 # sched user commands and support functions ######################## … … 93 91 $(DESTLIB)/libdatacmd.a 94 92 95 pantasks: $(BIN)/pantasks.$(ARCH) 96 $(BIN)/pantasks.$(ARCH) : $(single) $(funcs) $(cmds) $(libs)93 pantasks: $(BIN)/pantasks.$(ARCH) $(libs) 94 $(BIN)/pantasks.$(ARCH) : $(single) $(funcs) $(cmds) 97 95 98 pantasks_client: $(BIN)/pantasks_client.$(ARCH) 99 $(BIN)/pantasks_client.$(ARCH) : $(client) $(libs)96 pantasks_client: $(BIN)/pantasks_client.$(ARCH) $(libs) 97 $(BIN)/pantasks_client.$(ARCH) : $(client) 100 98 101 pantasks_server: $(BIN)/pantasks_server.$(ARCH) 102 $(BIN)/pantasks_server.$(ARCH) : $(server) $(funcs) $(cmds) $(libs)99 pantasks_server: $(BIN)/pantasks_server.$(ARCH) $(libs) 100 $(BIN)/pantasks_server.$(ARCH) : $(server) $(funcs) $(cmds) 103 101 @if [ ! -d $(BIN) ]; then mkdir -p $(BIN); fi 104 102 $(CC) -o $@ $^ $(LFLAGS)
Note:
See TracChangeset
for help on using the changeset viewer.
