From a3c885e41bc188051f8918f090be998469018bca Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Fri, 20 Sep 2013 12:23:02 -0700 Subject: Use the One Makefile to build them all This changes the names of the built binaries: login-server -> tmwa-login char-server -> tmwa-char map-server -> tmwa-map ladmin -> tmwa-admin eathena-monitor -> tmwa-monitor It also gets rid of the 'deps.make' file. --- src/login/GNUmakefile | 4 ++-- src/login/login.hpp | 1 + src/login/main.cpp | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 src/login/login.hpp create mode 100644 src/login/main.cpp (limited to 'src/login') diff --git a/src/login/GNUmakefile b/src/login/GNUmakefile index a87b879..eb983e8 100644 --- a/src/login/GNUmakefile +++ b/src/login/GNUmakefile @@ -1,6 +1,6 @@ .SUFFIXES: -all: - ${MAKE} -C ../.. login-server +bin/tmwa-login: + ${MAKE} -C ../.. bin/tmwa-login clean: rm -r ../../obj/login/ %:: diff --git a/src/login/login.hpp b/src/login/login.hpp new file mode 100644 index 0000000..8c7e195 --- /dev/null +++ b/src/login/login.hpp @@ -0,0 +1 @@ +// dummy header to make Make dependencies work diff --git a/src/login/main.cpp b/src/login/main.cpp new file mode 100644 index 0000000..2ef17a0 --- /dev/null +++ b/src/login/main.cpp @@ -0,0 +1,2 @@ +// dummy file to make Make dependencies work +#include "login.hpp" -- cgit v1.2.3-70-g09d2