all: echo-test open-test

echo-test: echo-test.c
	gcc -o echo-test -Wall echo-test.c

open-test: open-test.c
	gcc -o open-test -Wall open-test.c

clean:
	rm -f echo-test open-test

