mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
275 B
17 lines
275 B
.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
|
|
|
|
|