diff --git a/tools/Makefile b/tools/Makefile index e69de29bb..f51efddb0 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -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 + + diff --git a/tools/dmake.cpp b/tools/dmake.cpp index cae663b9d..6ccb10b57 100644 --- a/tools/dmake.cpp +++ b/tools/dmake.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)