I'm trying to build a makefile and after about 5 seconds, I get this error: "No files names given". what does it mean and how do I fix it?
[exec] Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
[exec] Error E2266: No file names given
[exec] ** error 1 ** deleting paslib.lib
This is being run from a BPG file with the options "-B" and -"fproject.bpg".
I'm relatively new to makefiles so I'm unsure of how to make Make pass files to the compiler. From my understanding, I call make with a make file consisting of various projects. Make file takes each project, creates another makefiles (with bpr2mak) and then compiles it (with bcc32). Is this correct? If it is, then make should pass the compiler the file name to build. From looking at my output, the project successfully makes a make file, but the compiler fails.