Skip to content
Snippets Groups Projects
Commit 9b451429 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Abort compilation if some smart "developers" think downloading a ZIP file is a good idea.

parent dda740b7
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,14 @@
#
############################################################################
# Enforce the presence of the GIT repository
#
# We depend on our submodules, so we have to prevent attempts to
# compile without it being present.
ifeq ($(wildcard .git),)
$(error YOU HAVE TO USE GIT TO DOWNLOAD THIS REPOSITORY. ABORTING.)
endif
# Help
# --------------------------------------------------------------------
# Don't be afraid of this makefile, it is just passing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment