# @(#)11        1.9  src/examples/pubsex/dtsex/makefile.os2, examples.src, os2dce21.dss, 960602a.1  1/24/96  17:55:15
#
#/********************************************************************
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: makefile for DTS EXAMPLE sample application [IBM CSet++] [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) -Fo$@ $(CFLAGS) $*.c

all: dtssamp.exe

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

dtssamp.obj: dtssamp.c

clean:
    -del dtssamp.obj *.map

rmtarget:
    -del dtssamp.exe

clobber: clean rmtarget
