windows.mk 457 B

1234567891011
  1. Msg := 'Build with the following configuration:'
  2. One := '1. mingw-make32.exe -f windows-universal.mk'
  3. Two := '2. mingw-make32.exe -f windows-mingw.mk'
  4. Three := '3. mingw-make32.exe -f windows-msvc.mk'
  5. all:
  6. @echo -e $(Msg)
  7. @echo -e $(One) "\n\tThe default Universal Windows platform build"
  8. @echo -e $(Two) "\n\tThe default Universal Windows Platform MinGW build."
  9. @echo -e $(Three) "\n\tThe default Universal Windows Platform MSVC build."