From 7ea6e10f1f79cea79b8a5a2aff2c0e860e4c8679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 17 Jul 2007 06:39:34 +0000 Subject: [PATCH] Minor updates to make it easier to port to Linux --- CheckMemoryLeak.cpp | 2 +- Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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