From 73740bdfc51e1219c9cbf4c05a94a3e1d457ebf2 Mon Sep 17 00:00:00 2001 From: Krisztian Litkey Date: Tue, 10 Apr 2012 13:26:33 +0300 Subject: [PATCH] build: added brindging Makefiles to common, core, daemon and plugins. --- src/common/Makefile | 7 +++++++ src/core/Makefile | 7 +++++++ src/daemon/Makefile | 7 +++++++ src/plugins/Makefile | 7 +++++++ 4 files changed, 28 insertions(+) create mode 100644 src/common/Makefile create mode 100644 src/core/Makefile create mode 100644 src/daemon/Makefile create mode 100644 src/plugins/Makefile diff --git a/src/common/Makefile b/src/common/Makefile new file mode 100644 index 0000000..2c0a593 --- /dev/null +++ b/src/common/Makefile @@ -0,0 +1,7 @@ +ifneq ($(strip $(MAKECMDGOALS)),) +%: + $(MAKE) -C .. $(MAKECMDGOALS) +else +all: + $(MAKE) -C .. all +endif diff --git a/src/core/Makefile b/src/core/Makefile new file mode 100644 index 0000000..2c0a593 --- /dev/null +++ b/src/core/Makefile @@ -0,0 +1,7 @@ +ifneq ($(strip $(MAKECMDGOALS)),) +%: + $(MAKE) -C .. $(MAKECMDGOALS) +else +all: + $(MAKE) -C .. all +endif diff --git a/src/daemon/Makefile b/src/daemon/Makefile new file mode 100644 index 0000000..2c0a593 --- /dev/null +++ b/src/daemon/Makefile @@ -0,0 +1,7 @@ +ifneq ($(strip $(MAKECMDGOALS)),) +%: + $(MAKE) -C .. $(MAKECMDGOALS) +else +all: + $(MAKE) -C .. all +endif diff --git a/src/plugins/Makefile b/src/plugins/Makefile new file mode 100644 index 0000000..2c0a593 --- /dev/null +++ b/src/plugins/Makefile @@ -0,0 +1,7 @@ +ifneq ($(strip $(MAKECMDGOALS)),) +%: + $(MAKE) -C .. $(MAKECMDGOALS) +else +all: + $(MAKE) -C .. all +endif -- 2.7.4