Compile and assemble source file only, do not link
Syntax
Description
The
-c option specifies that any source files listed are to be compiled and assembled into object files, and not linked into an executable (the default behavior).
To compile the source files
file1.bas and
file2.bas into the object files
file1.o and
apple.o, type,
fbc -c file1.bas file2.bas -o apple.o
See also