summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-06-14 21:25:32 -0600
committermo khan <mo.khan@gmail.com>2020-06-14 21:25:32 -0600
commitb31078ffe6e4a51b5e75f6d33809783fda5ae630 (patch)
tree2a2ef612323b71260fe0ecfa3db9c48ba9c3bd0e /Makefile
Create first cgreen test suite
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..56985ff
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+CC=gcc
+
+main : main.o
+ $(CC) main.o -lcgreen -o main
+ ./main
+
+main.o : main.c
+ $(CC) -c main.c
+
+clean:
+ rm main main.o