view 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 source

CFLAGS=-std=c11 -g -static

9cc: 9cc.c

test: 9cc
	./test.sh

clean:
	rm -f 9cc *.o *~ tmp*

.PHONY: test clean