diff --git a/CheckMemoryLeak.cpp b/CheckMemoryLeak.cpp index b55b64f57..081bbd5a2 100644 --- a/CheckMemoryLeak.cpp +++ b/CheckMemoryLeak.cpp @@ -1,7 +1,7 @@ #include "CheckMemoryLeak.h" -#include "Tokenize.h" +#include "tokenize.h" #include "Statements.h" #include "CommonCheck.h" diff --git a/Makefile b/Makefile index a73b17aa4..ce92d2309 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ OBJS=$(SRCS:%.cpp=%.o) %.o: %.cpp - gxx -Wall -pedantic -I. -o $@ -c $^ + g++ -Wall -pedantic -I. -o $@ -c $^ all: ${OBJS} main.o - gxx -o cppcheck $^ + g++ -o cppcheck $^ test: ${OBJS} TestTok.o - gxx -o cppcheck_test $^ + g++ -o cppcheck_test $^ clean: rm -f *.o cppcheck_test cppcheck