Makefile: Updated because the program has been split up into several files.

This commit is contained in:
Daniel Marjamäki 2007-05-26 06:42:31 +00:00
parent 48a584201c
commit 7b7650ad97
1 changed files with 6 additions and 2 deletions

View File

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