# Makefile to create austal and taldia
#
# system dependent definitions for gcc on Windows
#
# 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   = .o
EXE   = .exe
CURP  =
SRC   = ../source/
SRCRM = ..\\source\\
OOPT  = -g
COPT  = -Wall -m32 -DMSGALLOC -Wmissing-prototypes -fpack-struct -funsigned-char \
        -DMAKE_LABEL=\"WG-0\" -O0 -ffloat-store
LOPT  = -m32
SYSL  = -lm
LIBS  = libz.a
OUTO  = -o #
OUTE  = -o #
CC    =$(BIN)gcc
REMOVE = del
#
vpath %.c $(SRC)
vpath %.h $(SRC)
include $(SRC)rules.make
#########################################################################

