# @(#)20        1.9  src/examples/pubsex/dtsex/makefile.bor, examples.src, os2dce21.dss, 960602a.1  1/12/96  15:12:01
#
#/********************************************************************
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: makefile for DTS EXAMPLE sample application [Borland] [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.
#
#********************************************************************/

# See README.EXAMPLES in order to configure the Examples command files.
!INCLUDE <DCE_DIRS>

# inference rules
.c.obj:
    $(CC) @$(STEM)\cflags.bor $(INCL_FLAGS) $*.c

all: dtssamp.exe

dtssamp.exe: dtssamp.obj
    $(LD) $(LDFLAGS) c02 + dtssamp, dtssamp,, $(LDLIBS),,,

dtssamp.obj: dtssamp.c

clean:
    -del dtssamp.obj *.map

rmtarget:
    -del dtssamp.exe

clobber: clean rmtarget

