view Makefile @ 3:3cdf1d015159 default tip

fix error msg position
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Thu, 25 Jul 2019 11:05:58 +0900
parents 75f25ab4022c
children
line wrap: on
line source

CFLAGS=-std=c11 -g -static -Wall

9cc: 9cc.c

test: 9cc
	./test.sh

debug:
	$(CC) $(CFLAGS) -g -O0 -o 9cc 9cc.c

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

.PHONY: test clean