SOURCE_PATHS := core \
    core/stream \
    core/math \
    core/math/linal \
    library/bitstream \
    library/lzw \
    library/colors \
    library/texture \
    library/texture/formats \
    library/resman \
    engines/deng \
    engines/deng/defaults

default : build run;

TESTS := rle24 rle32 uncompressed24 uncompressed32

include Makefile.node

build   : fpcprog;
run     : progrun;
clean   : cleancur;
test    : build regressiontest;
	
%.execute :
	$(PROGNAME)$(EXEEXT) $(@F:%.execute=%.tga) 2>&1
