# Makefile to create austal and taldia
#
# system dependent definitions: Windows Intel C (19.0-IA32 with VS2019)
#
# IMPORTANT NOTE:
# The source code of AUSTAL is designed for 32-bit and 
# must be compiled as 32-bit program!
#
# 2021-06-23
#
#########################################################################
BIN   =
OBJ   = .obj
EXE   = .exe
CURP  =
SRC   = ../source/
SRCRM = ..\\source\\
COPT  = /nologo /DMSGALLOC /Zp1 /J /D_CRT_SECURE_NO_DEPRECATE \
        /Qmultibyte-chars- /DMAKE_LABEL=\"WI-x\" /O3 /fp:source
LOPT  = /nologo
SYSL  = 
LIBS  = zlib.lib legacy_stdio_definitions.lib
OUTO  = /Fo
OUTE  = /Fe
CC    = $(BIN)icl
REMOVE = del
#
vpath %.c $(SRC)
vpath %.h $(SRC)
include $(SRC)rules.make
#########################################################################
