head	1.2;
access;
symbols
	Hobson_Rock_14Dec2009:1.2
	HEAD_CTD_MERGE:1.1.0.4
	BEFORE_VCS_CHANGE:1.2
	Hobson_Rock_16Oct2009:1.2
	Hobson_Rock_29June2009:1.2
	Jun15_2009:1.2
	Apr_7_2009:1.2
	mar19_2009:1.2
	mar18_2009:1.2
	feb13_2009:1.2
	feb10-2009:1.2
	feb09-2009:1.2
	dec15_2008:1.2
	dec12_2008:1.2
	ST_10_5:1.2
	ST_10_4b:1.2
	ST_10_4:1.2
	ST_10_3:1.2
	ST10_HW:1.2
	ST_10_2:1.2
	ST_10_1:1.2
	ST_10_0:1.2
	AUTONOMY_BRANCH:1.2.0.2
	AUTONOMY:1.2
	AUTONOMY-2008_07_30:1.2
	TREX_ST_1_0:1.1
	RELEASE_27_April_2007_CTD_1:1.1.0.2
	Development_With_Wayne_060804:1.1;
locks; strict;
comment	@# @;


1.2
date	2008.07.29.15.32.52;	author fpy;	state Exp;
branches;
next	1.1;

1.1
date	2004.04.02.01.14.09;	author rob;	state Exp;
branches;
next	;


desc
@@


1.2
log
@added global configuration file for make under autonomy
@
text
@##########################################################################
# Copyright 1999 MBARI                                             
##########################################################################
# Summary  : Makefile for Parvus fan card driver
# Filename : Makefile
# Author   : rsm
# Project  : 
# Version  : Version 1.0
# Created  : 2004/3/12
# Modified : 
# Archived :
##########################################################################
# Modification History:
# $Header: /home/cvs/auv-qnx/auv/altex/onboard/fan/Makefile,v 1.1 2004/04/02 01:14:09 rob 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.. \
	      -I../utils \
	      -I../framework \
	      -I../taskIF \
	      -I../DataLog \
	      -I/usr/include           
#
# T1 is privity leve1 one, required by the inp and outp functions.
#
LDFLAGS1    = -g -T1                
LDFLAGS	    = 
LIBPATH	    = /usr/lib:../lib

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


OBJS	    =	envUtils.o Fan.o FanLog.o FanOutput.o FanServer.o

TARGETS =	fanTestSimple fan fanServer fanTest

ifeq ($(AUTONOMY), 1)
# Specific configuration for AUTONOMY group
# this allow to alter the value of the different variables
# used by make when AUTONOMY variable has been set to 1
# on the calling shell  
-include ../autonomy.make # this file contains the general
                       # modifications we want to apply to
                       # all the modules 

# following line are more specific to this file 

# end of AUTONOMY specific
endif 

all:		$(OBJS) $(TARGETS)

fanTestSimple:  _fanTestSimple.o $(OBJS) $(LIBS) 
	$(LD) $(LDFLAGS1) _fanTestSimple.o $(OBJS) $(LIBS) -o $@@

fanTest:  _fanTest.o $(OBJS) $(LIBS) 
	$(LD) $(LDFLAGS1) _fanTest.o $(OBJS) $(LIBS) -o $@@

fan:  	_fan.o $(OBJS) $(LIBS) 
	$(LD) $(LDFLAGS1) _fan.o $(OBJS) $(LIBS) -o $@@

fanServer:	_fanServer.o $(OBJS) $(LIBS) 
	$(LD) $(LDFLAGS) _fanServer.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.1
log
@Initial commit of the server/driver/test code for the new Parvus fan card
that has the temperature, humidity and pressure sensors.
@
text
@d14 1
a14 1
# $Header: /data/altex/Master/auv/altex/onboard/DropWeight/Makefile,v 1.9 2004/02/14 00:09:54 rob Exp $
d62 14
@

