#
# Makefile for the special speed up structures
#

compiler = tcc -c 

options = -w -d -O -Z -ml

libman = tlib

includepath = ..\engine\header;..\misc

all: struct.lib
        @echo Special speed up structures compiled

struct.lib: fsttrmap.obj 
       @-del struct.lib
       @$(libman) struct.lib + fsttrmap.obj
       @-del struct.bak

fsttrmap.obj: fsttrmap.c
       @$(compiler) $(options) -I$(includepath) fsttrmap.c

clean:
        @-del fsttrmap.obj
        @-del struct.lib
