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

# Definition for compiler invocation
COMPILE = g++ -x c++ -std=gnu++11 -Wall -c

# Link the main source file to create an executable binary
FirstProg: FirstProg.o NcDialog.a
> g++ -o FirstProg FirstProg.o NcDialog.a -lncursesw

# Comile the main source file
FirstProg.o: FirstProg.cpp
> $(COMPILE) FirstProg.cpp
