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

all: parse

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

clean:
	-rm -f parse