summaryrefslogtreecommitdiffstats
path: root/example/Makefile
blob: 250450591a472834d3571f995e30b55321dd2734 (plain)
1
2
3
4
5
6
7
8
9
10
all: example

example: example.o
	gcc -o example -lrcd example.o

test: example
	cat input.txt | ./example

clean:
	rm -f example example.o