Makefile:235: *** commands commence before first target. Stop.
#ifdef _WIN32#pragma warning (disable : 4996)#endif
if(argv[1] != NULL) in = fopen(argv[1], "rb"); else { fprintf (stderr, "FATAL ERROR: No file name specified.\n"); return EXIT_FAILURE; } if (!in) { fprintf (stderr, "FATAL ERROR: fopen() failed.\n"); return EXIT_FAILURE; }...
free (buf); fclose (in); return EXIT_SUCCESS;}