From 7b7650ad97ef83e54769dfbd2d1c9692f6ea562c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 26 May 2007 06:42:31 +0000 Subject: [PATCH] Makefile: Updated because the program has been split up into several files. --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fc46acd4c..3746c75ec 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,6 @@ -cppcheck.exe: main.cpp - gxx -Wall -pedantic -o cppcheck.exe main.cpp + + +all: + gxx -Wall -pedantic -o cppcheck.exe main.cpp Tokenize.cpp Statements.cpp CheckBufferOverrun.cpp CheckClass.cpp CheckHeaders.cpp CheckMemoryLeak.cpp CheckOther.cpp CommonCheck.cpp + gxx -Wall -pedantic -o tok.exe testtok.cpp Tokenize.cpp CommonCheck.cpp +