From 11c66f4e9e02b7f45d758ee962a6dd9be8f510ef Mon Sep 17 00:00:00 2001 From: Ivan Kuchin Date: Sun, 22 Jan 2017 22:19:10 +0100 Subject: [PATCH] add basic makefile as an alternative to using xcode --- .gitignore | 2 ++ Makefile | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 5084276..91196fb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +/blueutil + /pkg/ build/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9e4407d --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CFLAGS = -Wall -Wextra -Werror -framework IOBluetooth + +test: blueutil + ./test + +.PHONY: test