File: //opt/OV/OpC/examples/copcagtapi/Makef.hpuxIA32
#
###############################################################################
#
#ifdef HPUX_11_20
# File: Makef.hpuxIA32
#endif
# RCS: $Header: $
# Description: This file contains a makefile to build the sample OVO API
# programs
# Language: make
# Package: HP OpenView Operations
# Status: @(#)OVO A.08.00 (05/09/03)
#
# (c) Copyright 1993-98, Hewlett-Packard Company, all rights reserved.
#
###############################################################################
#
CC=cc
OPCLIB=-lopcagtapi
CC_FLAGS=-Aa -D_REENTRANT -I/usr/include/reentrant
SYS_LIBS=-ldld -lm -lpthread -lnsl
############### all ###############
all : opcapitest itoagtmsitest itoshltest
############## opcapitest ###############
opcapitest : opcapitest.o
${CC} opcapitest.o -o opcapitest -L/opt/OV/lib/hpux32 ${OPCLIB} ${SYS_LIBS}
opcapitest.o : opcapitest.c
${CC} opcapitest.c -c -o opcapitest.o ${CC_FLAGS} -I/opt/OV/include
############## itoagtmsitest ##############
itoagtmsitest : itoagtmsitest.o
${CC} itoagtmsitest.o -o itoagtmsitest -L/opt/OV/lib/hpux32 ${OPCLIB} ${SYS_LIBS}
itoagtmsitest.o : itoagtmsitest.c
${CC} itoagtmsitest.c -c -o itoagtmsitest.o ${CC_FLAGS} -I/opt/OV/include
############## itoshltest ##############
itoshltest : itoshltest.o
${CC} itoshltest.o -o itoshltest ${SYS_LIBS}
itoshltest.o : itoshltest.c
${CC} itoshltest.c -c -o itoshltest.o ${CC_FLAGS} -I/opt/OV/include
################ clean ################
clean:
rm -f opcapitest opcapitest.o itoagtmsitest itoagtmsitest.o itoshltest itoshltest.o
#
###############################################################################
#ifdef HPUX_11_20
# End of Makefile.hpuxIA32
#endif
###############################################################################
#