.PHONY: all clean remake all: test clean: rm test test.s remake: clean make all test: test.s clang -Wall -Wextra $< -o $@ test.s: test.ll llc -W $< -o $@