summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndi Shyti <andi.shyti@samsung.com>2016-12-15 15:22:00 +0900
committerAndi Shyti <andi.shyti@samsung.com>2016-12-15 15:22:00 +0900
commit23701b28174a47ddf1d0eabd3c6d74640bae0e9f (patch)
tree00acd17dd277bac126e09ba57170f8c41fcf5ccd /Makefile
initial commit
the repository contains ep.c, Makefile and .gitignore Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bf8ba12
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+TARGET = ep
+SRC = $(TARGET).c
+FLAGS = -g -Wall
+
+$(TARGET):
+ cc $(FLAGS) $(SRC) -o $(TARGET)
+
+.PHONY: clean
+clean:
+ rm -f $(TARGET)