Is is possible to put something at the top of the C source file, like
// GCC_OPTIONS=-g,-Wall
that will add those options automatically to
No. Some compiler options have #define equivalents, but not those. This belongs in your make file (or equivalent). With GNU Make:
#define
CFLAGS += -g -Wall