# Makefile for Salmon, a test of the 'exec' functions
#           -  Invoke using "gmake -f MakeChild"
# Mahlon R. Smith, The Software Samurai
# Tools: G++ / Gcc 9.0.1 for Linux (Fedora 30)
# 27-Sep-2019

# This variable is defined for technical reasons
# (see 'make' documentation for more information)
.RECIPEPREFIX = >

# Files for childApp Application
HFILES = GlobalDef.hpp 
OFILES = childApp.o 

# Standard compile
COMPILE = g++ -x c++ -std=gnu++11 -Wall -c

#** Build the childApp Application **
childApp: $(OFILES)
> g++ -o childApp $(OFILES)

childApp.o: childApp.cpp $(HFILES)
> $(COMPILE) childApp.cpp
