BIN=../bin

all: $(BIN)/hello_clang

$(BIN)/hello_clang: hello.c
	clang hello.c -o $(BIN)/hello_clang

clean:
	rm -f $(BIN)/hello_clang
