2025-04-27 07:49:33 -04:00

16 lines
365 B
PHP

# Rules for compiling .cfgs from .xmls
.SUFFIXES: .cfg .h .xml
{..\}.xml{$(O)}.cfg:
copy $** $(O)
$(_TPG_ROOT)\Tools\gc.exe -h $*.h $*.xml
# Automatic Registration
!if defined(MAKEDLL) && defined(AUTOREG)
$(TARGETNAME).cpy: $(O)\$(TARGETNAME).dll
regsvr32 /s $** > $@
!else
$(TARGETNAME).cpy:
echo File not registered: $** > $@
!endif