Makefile 171 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 TARGETS = multiplexor .PHONY: all clean all: $(TARGETS) clean: rm -rf $(TARGETS) multiplexor: gcc -I../common/ ../common/auxiliar.c multiplexor.c -o multiplexor -lm