# Makefile for test, a do-nothing test program.
#   Invoke using "gmake"
# Mahlon R. Smith, The Software Samurai - (c) 2011-2012
# Tools: G++ / Gcc 8.0.1 for Linux
# Note: The build requires support for the C++17 standard.
# 
# 
# 

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

COMPILE = g++ -x c++ -std=gnu++17 -Wall -c

#** Build the temporary test application **
test: test.o
> g++ -o test test.o

test.o: test.cpp test.hpp
> $(COMPILE) test.cpp
