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

