8 lines
314 B
Makefile
8 lines
314 B
Makefile
# This Makefile is a decoy to attempt to detect when a non-GNU make is being
|
|
# used and alert the user.
|
|
|
|
test:
|
|
@echo "You appear to be using a non-GNU version of the 'make' program."
|
|
@echo "The YAMLScript Exercism track requires you to use GNU make."
|
|
@echo "Please try 'make $@' again using GNU make."
|
|
@exit 1
|