Blame view

plexers/Makefile 171 Bytes
Imanol-Mikel Barba Sabariego authored
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