Minor updates to make it easier to port to Linux

This commit is contained in:
Daniel Marjamäki 2007-07-17 06:39:34 +00:00
parent ba13ad5e3c
commit 7ea6e10f1f
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#include "CheckMemoryLeak.h"
#include "Tokenize.h"
#include "tokenize.h"
#include "Statements.h"
#include "CommonCheck.h"

View File

@ -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