Restore and fix tools Makefile. Fix include lines.
This commit is contained in:
parent
b746e9d4be
commit
66448b41ac
|
@ -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
|
||||
|
||||
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue