Restore and fix tools Makefile. Fix include lines.

This commit is contained in:
Kimmo Varis 2010-03-11 22:55:31 +02:00
parent b746e9d4be
commit 66448b41ac
2 changed files with 12 additions and 2 deletions

View File

@ -0,0 +1,10 @@
all: errmsg dmake
errmsg: errmsg.cpp
g++ -Wall -pedantic -o errmsg errmsg.cpp
dmake: dmake.cpp
g++ -Wall -pedantic -o dmake dmake.cpp ../lib/filelister.cpp ../lib/filelister_unix.cpp

View File

@ -25,9 +25,9 @@
#include <vector>
#if defined(_WIN32)
#include "fileLister_win32.h"
#include "../lib/fileLister_win32.h"
#else // POSIX-style system
#include "filelister_unix.h"
#include "../lib/filelister_unix.h"
#endif
std::string objfile(std::string cppfile)