diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,5 +4,5 @@ PROG_FILES = main.cpp all: parser parser: $(PROG_FILES) $(LIB_FILES) - g++ -g -o parser $(PROG_FILES) $(LIB_FILES) + g++ -O2 -g -o parser $(PROG_FILES) $(LIB_FILES) |