# @(#)06        1.5  src/examples/pubsex/dtsex/makefile.vc3, examples.src, os2dce21.dss, 960602a.1  1/12/96  15:12:05
#
#/********************************************************************
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: makefile for DTS EXAMPLE sample application [IBM Visual Age C++ 3.0] [HPFS]
#
# ORIGINS: 27
#
# (C) COPYRIGHT International Business Machines Corp. 1995
#  All Rights Reserved
#  Licensed Materials - Property of IBM
#
#  US Government Users Restricted Rights - Use, duplication or
#  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
#
#********************************************************************/

!INCLUDE <DCE_DIRS>

# inference rules
.c.obj:
        $(CC) -Fo$@ $(CFLAGS) $*.c

all: dtssamp.exe

dtssamp.exe: dtssamp.obj
    $(LD) $(LDFLAGS) dtssamp.obj /O:dtssamp.exe $(LDLIBS)

dtssamp.obj: dtssamp.c

clean:
    -del dtssamp.obj *.map

rmtarget:
    -del dtssamp.exe

clobber: clean rmtarget
