Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

6
  • Thank you for the quick reply, John, but the make system has worked on previous versions of Windows (superuser.com/questions/808807/…). I agree that a virtual machine could solve the issue but I believe that would be overkill for the problem I'm having here.
    – psyduck
    Commented Jan 11, 2023 at 15:59
  • user2048773 responded in early 2021 showing how to get it up and running on Windows 10 and Little Helper responded in late 2022 showing the solution I attempted (albeit without saying what version of Windows that was done on). I would comment to ask that user directly but my account does not have enough reputation points to do so.
    – psyduck
    Commented Jan 11, 2023 at 16:15
  • $cat is likely an internal command of powershell. this can not be accessed by gnu make. Need get 'cat' program from elsewhere, as this seems to be used by your makefile Commented Jan 11, 2023 at 16:31
  • Thank you, Joakim. I'll follow that lead and post my results.
    – psyduck
    Commented Jan 11, 2023 at 16:34
  • @Joakim Elofsson --- As for this: $cat is likely an internal command of powershell., this is not true, cat is an internal command alias for Get-Contnet`. Using this, $cat``` is a variable name that has to have an assigned value. You can get a list of all PS aliases by using Get-Alias -Name '*' | Out-Gridview.
    – postanote
    Commented Jan 11, 2023 at 20:14