msxbuild/lib/make/mb_conv.mk
Willem Cazander 8a18cb494d
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
Moved all file convert function to namespace.
2024-07-06 01:09:59 +02:00

14 lines
363 B
Makefile

define mb_conv_unix2dos
unix2dos -q -n $(1) $(2)
endef
MB_DOC_FIRE_FUNCTION += $(call mb_make_call,mb_doc_function,mb_conv_unix2dos,"Converts an unix file to dos.","<in> <out>")
define mb_conv_dos2unix
dos2unix -q -n $(1) $(2)
endef
MB_DOC_FIRE_FUNCTION += $(call mb_make_call,mb_doc_function,mb_conv_dos2unix,"Converts an dos file to unix.","<in> <out>")