WindowsXP-SP1/admin/cys/test/makefile.inc
2020-09-30 16:53:49 +02:00

18 lines
292 B
PHP

.SUFFIXES : .vbt
# a .vbs file is produced from a .vbt file by executing the C preprocessor
# on the .vbt file, which produces a .i file. then we rename the .i file
# to .vbs
.vbt.vbs:
-del $@
$(CC) -nologo -EP -P -Tc$(@B).vbt
ren $(@B).i $@
all:
clean:
del *.vbs