################################################################################
##                                                                            ##
## Boxes	-	AMIGA-like BOXES demo program for MS Windows 3.0      ##
##                                                                            ##
## (C) 21.02.1991 by WIZARD-SOFT                                              ##
##                                                                            ##
## Author: Kai Nacke                                                          ##
##                                                                            ##
## File: boxes                                                                ##
##                                                                            ##
## Last Update: 20.04.1991                                                    ##
##                                                                            ##
################################################################################
##                                                                            ##
##  WIZARD-SOFT                                      \   |    /               ##
##  ===========                                        \ |   /                ##
##                                                  -  -  o   - -             ##
##  Magic Software from                                 / \ \                 ##
##                                                     /   \ \                ##
##      West Germany!!                                      \ \               ##
##                                                           \_\              ##
##                                                                            ##
################################################################################

# MSCOPT: add -Zd for SYMDEB/WDEB386 and -Zi for CVW
# LINKOPT: add /map for SYMDEB/WDEB386 und add /co for CVW

MSCOPT=-c -AS -Gsw -Oalns -Zpe -W3
MASMOPT=/D?SMALL=1
LINKOPT=/NOD
OBJECTS=boxes.obj

boxes.res: boxes.rc boxes.h boxes.ico
    rc -r $*

boxes.obj: boxes.c boxes.h
    cl $(MSCOPT) $*.c

boxes.exe: $(OBJECTS) boxes.def
    link $(LINKOPT) $(OBJECTS),,, libw snocrt slibcew, $*.def
    rc $*.res

boxes.exe: boxes.res
    rc $*.res
