diff Makefile @ 0:7d266b61ec2a

initial commit return valueなコンパイラを作成
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Wed, 24 Jul 2019 13:58:02 +0900
parents
children 75f25ab4022c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Wed Jul 24 13:58:02 2019 +0900
@@ -0,0 +1,11 @@
+CFLAGS=-std=c11 -g -static
+
+9cc: 9cc.c
+
+test: 9cc
+	./test.sh
+
+clean:
+	rm -f 9cc *.o *~ tmp*
+
+.PHONY: test clean