summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Shyti <andi.shyti@samsung.com>2016-12-14 21:32:10 +0900
committerAndi Shyti <andi.shyti@samsung.com>2016-12-14 21:32:10 +0900
commit644c51706593779017dab4c3a53e04fd9dc4aba7 (patch)
tree43369b3b819f618cfffc19779736cfb0c22f0d14
parent2ff6dd31f820921fc62fb67a371fcae580489093 (diff)
Makefile: added file
Signed-off-by: Andi Shyti <andi.shyti@samsung.com>
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0b49396
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+SRC = is.c
+FLAGS = -g -Wall
+TARGET = is
+
+$(TARGET):
+ cc $(FLAGS) $(SRC) -o $(TARGET)
+
+.PHONY: clean
+clean:
+ rm -f $(TARGET)