##############################################################################
#                                                                            #
#                                Makefile for                                #
#                      An Turbo-Pascal Implementation of                     #
#                                   RRC.2                                    #
#                                                                            #
#     Implementation done at nine o'clock by Daniel Vogelheim                #
#                                                                            #
#                                                                            #
#     to make complete library:       make all                               #
#     to test spec conformance:       make test                              #
#     to make source archive:         make archive                           #
#     to clean directory:             make clean                             #
#                                                                            #
##############################################################################

all: rrc2.tpu rrc2test.exe

rrc2.tpu: rrc2.pas
        tpc rrc2.pas

rrc2test.exe: rrc2test.pas rrc2.tpu
        tpc rrc2test.pas

archive:
        del rrc2.zip
        pkzip rrc2.zip rrc2.pas rrc2test.pas makefile rrc2spec.txt readme

test: rrc2test.exe
        rrc2test.exe

clean:
        del *.exe *.tpu *.bak

# FINI makefile
