#
# 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 
       @..\..\bin\delete struct.lib
       @$(libman) struct.lib + fsttrmap.obj
       @..\..\bin\delete struct.bak

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

clean:
        @..\..\bin\delete fsttrmap.obj
        @..\..\bin\delete struct.lib
