summaryrefslogtreecommitdiff
path: root/test1/Makefile
blob: d9854f1ee42d6dce944096b6194675c650cbbcbf (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-std=c99 -Wall -Werror

all: parse

test: parse
	printf "9-5+2" | ./parse
	printf "9-5+2+" | ./parse

clean:
	-rm -f parse