@jwildeboer Make treats "$" as special character. $$ escapes it, so that the shell sees just a "$".
Notices by thp (thp@dosgame.club)
-
Embed this notice
thp (thp@dosgame.club)'s status on Sunday, 19-Jan-2025 21:48:21 JST thp
-
Embed this notice
thp (thp@dosgame.club)'s status on Sunday, 19-Jan-2025 21:48:20 JST thp
@jwildeboer The backslash is interpreted by the shell, the single "$" is interpreted (consumed) by make, as it tries to access a variable $" (dollar-sign, followed by double-quote). To echo a "$", you need to:
1. Escape using "\" for the shell
2. Escape using "$$" for makeNote how the make output of the first file is just the line:
echo "\
And the second invocation gets it as:
echo "\$"
-
Embed this notice
thp (thp@dosgame.club)'s status on Monday, 30-Sep-2024 20:29:56 JST thp
After all those DOS Game Jams, maybe a Win32 jam for a change? Starting tomorrow, and you have ~ 2 months to fill your idle cycles with creating a game for an old-but-still-alive API:
-
Embed this notice
thp (thp@dosgame.club)'s status on Thursday, 18-Apr-2024 06:44:47 JST thp
Now released: The DOS Game Jam Demo Disc (2023 Edition). Fresh DOS games curated from recent Itch.io DOS Game Jams (+ some other sources) for your enjoyment: https://thp.io/2024/demodisc/ -- including a fancy menu for easy navigation, and the ISO is bootable (FreeDOS).