summaryrefslogtreecommitdiff
path: root/example/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'example/makefile')
-rw-r--r--example/makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/example/makefile b/example/makefile
new file mode 100644
index 0000000..8fe13ba
--- /dev/null
+++ b/example/makefile
@@ -0,0 +1,6 @@
+main : main.o
+ gcc main.o -o main -L../ -lturtle
+main.o : main.c
+ gcc -c main.c
+clean :
+ rm main.o main