# @(#)52        1.9  src/examples/pubsex/prime/makefile.bor, examples.src, os2dce21.dss, 960602a.1  1/12/96  15:20:31
#
#/********************************************************************
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: makefile for PRIME 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: prime.exe

prime.exe: prime.obj
    $(LD) $(LDFLAGS) $(IBMC_lib)\c02 + prime, prime,, $(LDLIBS),,

prime.obj: prime.c

clean:
    -del *.obj *.map

rmtarget:
    -del prime.exe

clobber: clean rmtarget
