# @(#)42        1.9  src/examples/pubsex/prime/makefile.os2, examples.src, os2dce21.dss, 960602a.1  1/24/96  17:55:17
#
#/********************************************************************
# COMPONENT_NAME:  examples.src
#
# FUNCTIONS: makefile for PRIME 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: prime.exe

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

prime.obj: prime.c

clean:
    -del prime.obj prime.map

rmtarget:
    -del prime.exe

clobber: clean rmtarget
