I wrote a C program in which valid instructions are used depending on the platform on which the program is to be started: Windows or Linux. In the C code I use #ifdef USE_WIN to say that that piece of code goes for the Windows platform, unlike #else ....
How do I go about passing USE_WIN inside the Makefile via the command line with make ?