TARGETS = adder .PHONY: all clean all: $(TARGETS) clean: rm -rf $(TARGETS) adder: gcc -I../common/ ../common/auxiliar.c adder.c -o adder