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.
18 lines
580 B
18 lines
580 B
#
|
|
# generate auxilary files from the binary mof (bmf) file
|
|
#
|
|
# filtdata.h has definitions for the guids, data structures and definitions
|
|
# of the method ids.
|
|
#
|
|
# filter.vbs is a ready to run vbscript applet that will query all classes
|
|
# in the mof. Once you install your driver, run the script
|
|
# at the command line by typing: filter.vbs.
|
|
|
|
clean:
|
|
del filtdata.h filter.vbs
|
|
|
|
$(O)\filter.mof: filter.mof
|
|
|
|
filter.vbs filtdata.h filter.x: $(O)\filter.bmf
|
|
wmimofck -m -hfiltdata.h -tfilter.vbs -xfilter.x $(O)\filter.bmf
|
|
|