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.
19 lines
282 B
19 lines
282 B
OUTPUT_HDRS=$(O)\dsound.h $(O)\dsoundp.h
|
|
|
|
dsound: $(OUTPUT_HDRS)
|
|
|
|
clean: cleansrc
|
|
|
|
cleansrc:
|
|
del $(OUTPUT_HDRS)
|
|
|
|
#
|
|
# dsound.h, dsoundp.h
|
|
#
|
|
|
|
$(O)\dsound.h : dsound.x
|
|
hsplit -o $@ nul -bt2 BEGIN_MSINTERNAL END_MSINTERNAL -c @@ $?
|
|
|
|
$(O)\dsoundp.h: dsound.x
|
|
copy $? $@
|
|
|