head	1.7;
access;
symbols
	OctansJune5:1.7
	Ver3-0:1.6
	Ver2-4:1.6
	Ver2-3-2:1.6
	Ver2-3:1.6
	Ver2-2:1.6
	Ver2-1:1.6
	Ver1-11:1.6
	Ver1-10:1.6
	Ver1-9:1.5
	Ver1-8:1.4
	Ver1-7:1.4
	Ver1-6:1.4
	Ver1-5:1.4
	Ver1-4-1:1.3
	Ver1-4:1.3
	Ver1-3:1.3
	Ver1-2:1.3
	Ver1-1:1.3
	Validate1:1.3
	OdysseyMatch2:1.2;
locks; strict;
comment	@# @;


1.7
date	2001.06.02.21.33.36;	author hthomas;	state Exp;
branches;
next	1.6;

1.6
date	2000.03.21.21.58.46;	author oreilly;	state Exp;
branches;
next	1.5;

1.5
date	2000.03.20.19.38.56;	author oreilly;	state Exp;
branches;
next	1.4;

1.4
date	2000.01.18.03.03.52;	author amarsh;	state Exp;
branches;
next	1.3;

1.3
date	99.12.27.19.49.57;	author oreilly;	state Exp;
branches;
next	1.2;

1.2
date	99.12.15.22.55.23;	author oreilly;	state Exp;
branches;
next	1.1;

1.1
date	99.12.14.00.05.00;	author pean;	state Exp;
branches;
next	;


desc
@@


1.7
log
@various changes; remove stale entries in root makefile, fixed file naming to allow for serving from windows, and fixed makefiles to avoid file linking/unlinking problem in makedepend when talking through samba to windows boxes
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for Work Site 
# Filename : Makefile
# Author   : Andrew Pearce
# Project  : 
# Version  : Version 1.0
# Created  : 12/06/99
# Modified : 12/06/99
# Archived :
##########################################################################
# Modification History:
# $Header: /usr/local/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.6 2000/03/21 21:58:46 oreilly Exp $
#
##########################################################################

CC	    = cc
CCPP	    = cc
LD	    = cc
AR 	    = wlib
DEPEND_TOOL = makedepend

DEBUG 	    = -g
EXCEPTION_HANDLING = -WC,-xs

## OPTIMIZE = -4 -Os
OPTIMIZE = 

## MAP_OUTPUT = -S -ms -M
MAP_OUTPUT =

AUV_BIN_DIR = ../bin

CFLAGS	    = -c $(DEBUG) $(MAP_OUTPUT) $(OPTIMIZE) -D_QNX -DUNIX  
CPPFLAGS    = -c $(DEBUG) $(MAP_OUTPUT) $(OPTIMIZE) -D_QNX -DUNIX \
	         $(EXCEPTION_HANDLING)

INCLUDES    = -I.  \
	      -I../utils \
	      -I../framework \
	      -I../taskIF \
	      -I/usr/include           

LDFLAGS	    = -g
LIBPATH	    = /usr/lib:../lib

LIBS        =   ../utils/utils.lib \
		../taskIF/taskInterfaces.lib \
		../framework/auvFramework.lib

OBJS	    = 	Transponder.o \
		TransponderList.o \
		WorkSite.o 


TARGETS =	workSite

all:		$(TARGETS)

workSite:  _workSite.o $(OBJS) $(LIBS) 
	$(LD) $(LDFLAGS) _workSite.o $(OBJS) $(LIBS)  -o $@@

install:
		cp -f $(TARGETS)	$(AUV_BIN_DIR)/. 



##########################################################################
# Do not modify anything below this line unless absolutely necessary

.SUFFIXES:
.SUFFIXES:	.o .c .cc .d .idl

%.d: %.c
	    @@echo Generating dependencies for $?
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@.tmp
	    @@mv $@@.tmp $@@

%.d: %.cc
	    @@echo Generating dependencies for $?
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@.tmp
	    @@mv $@@.tmp $@@

%.o: %.c 
	    $(CC) $(CFLAGS) $(INCLUDES) $< -o $@@	
	    @@echo
%.o: %.cc
	    $(CCPP) $(CPPFLAGS) $(INCLUDES) $< -o $@@
	    @@echo

DEST	    = .

MAKEFILE    = Makefile

include       $(OBJS:.o=.d)

depend:	

clean:
	rm -f core *.o $(OBJS:.o=.d) *.lib *.yy *.tab.* $(TARGETS)

update:
	cvs update $(CC_SRCS) $MAKEFILE

commit:
	cvs commit $(CC_SRCS) $MAKEFILE

##########################################################################









@


1.6
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.5 2000/03/20 19:38:56 oreilly Exp $
d77 2
a78 1
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@
d82 2
a83 1
	    @@$(DEPEND_TOOL) $(INCLUDES) $? -f $@@ 
@


1.5
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /home/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.8 2000/03/02 17:43:54 marsh Exp $
d65 1
a65 1
		cp -f workSite 		$(AUV_BIN_DIR)/. 
a67 8

#workSite.tab.cc:	workSite.y
#	yacc -b workSite -d -v workSite.y
#	mv workSite.tab.c workSite.tab.cc

#workSite.yy.cc: 	workSite.l
#		lex workSite.l
#		mv lex.yy.c workSite.yy.cc
@


1.4
log
@Modified makefiles to also delete executables and libraries
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.3 1999/12/27 19:49:57 oreilly Exp $
d22 1
a22 1
DEPEND_TOOL = /usr/altex/bin/makedepend
a39 1
	      -I.. \
d52 3
a54 4
OBJS	    = 	WorkSite.o \
		WorkSiteServer.o \
		workSite.tab.o \
		workSite.yy.o
d56 1
d61 2
d64 2
a65 3
workSite.tab.cc:	workSite.y
	yacc -b workSite -d -v workSite.y
	mv workSite.tab.c workSite.tab.cc
a66 3
workSite.yy.cc: 	workSite.l
		lex workSite.l
		mv lex.yy.c workSite.yy.cc
a67 1
workSite:  workSite.o $(OBJS) $(LIBS) 
d69 3
a71 2
install:
		cp -f workSite 		$(AUV_BIN_DIR)/. 
d73 3
@


1.3
log
@*** empty log message ***
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.2 1999/12/15 22:55:23 oreilly Exp $
d58 3
a60 1
all:		workSite
d107 1
a107 1
	rm -f core *.o $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.2
log
@Added target 'install'
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/WorkSite/Makefile,v 1.1 1999/12/14 00:05:00 pean Exp $
d105 1
a105 1
	rm -f core $(OBJS) $(OBJS:.o=.d) *.lib *.yy *.tab.* 
@


1.1
log
@Moved files to WorkSite subdirectory
@
text
@d14 1
a14 1
# $Header: /usr/local/cvs/auv/altex/onboard/kvhCompass/Makefile,v 1.1 1999/12/08 16:56:23 pean Exp $
d33 2
d50 1
a52 1

d54 3
a56 1
		WorkSiteServer.o
d58 1
a58 1
all:		$(OBJS)
d68 6
@
