diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..06b1626 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: all +all: placeholder + +.PHONY: dep +dep: + +.PHONY: info +info: + @echo "make: Build executable" + @echo "make dep: Make all required dependencies" + @echo "make debug: Make with Debug hooked in" + @echo "make clean: Clean all files" +