From bf1c99fa7efcbd0f123a0b5fb96dfe5f2c71fa4a Mon Sep 17 00:00:00 2001 From: Saket Sinha Date: Wed, 28 Oct 2020 14:28:50 +0100 Subject: [PATCH] Add top level Makefile to build all apps Adding a top level Makefile to build all the different apps listed under customer_app directory. --- customer_app/Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 customer_app/Makefile diff --git a/customer_app/Makefile b/customer_app/Makefile new file mode 100644 index 00000000..598197c1 --- /dev/null +++ b/customer_app/Makefile @@ -0,0 +1,4 @@ +.PHONY: app + +app: + find . -maxdepth 2 -mindepth 2 -type d -execdir ./genromap {} \;