Fix the CFlags and correct the debugger to launch the correct exe

This commit is contained in:
akuker 2020-07-09 17:57:13 -05:00
parent c0e607eb9d
commit 96704a002a
1 changed files with 5 additions and 3 deletions

View File

@ -5,9 +5,11 @@ CXX = g++
# Debug CFLAGS
#CFLAGS = -DDISK_LOG -O0 -g -Wall
#CFLAGS = -DDISK_LOG -O0 -g -Wall
#CXXFLAGS = -DDISK_LOG -O0 -g -Wall
#CFLAGS = -O0 -g -Wall
#CXXFLAGS = -O0 -g -Wall
# Release CFLAGS
CXXFLAGS = -O3 -Wall
CFLAGS = -O3 -Wall
CXXFLAGS = -O3 -Wall
@ -113,4 +115,4 @@ $(DOC_DIR)/%_man_page.txt : $(DOC_DIR)/%.1
man -l $< | col -bx >> $@
.PHONY: Debug
Debug: scsimon
Debug: all