Blame view

plexers/Makefile 443 Bytes
Imanol-Mikel Barba Sabariego authored
1
TARGETS = multiplexor demultiplexor encoder decoder
Imanol-Mikel Barba Sabariego authored
2
3
4
5
6
7
8
9
10
11

.PHONY: all clean

all: $(TARGETS)

clean:
	rm -rf $(TARGETS)

multiplexor:
	gcc -I../common/ ../common/auxiliar.c multiplexor.c -o multiplexor -lm
Imanol-Mikel Barba Sabariego authored
12
13
14
15
16
17
18
19

demultiplexor:
		gcc -I../common/ ../common/auxiliar.c demultiplexor.c -o demultiplexor -lm

encoder:
		gcc -I../common/ ../common/auxiliar.c encoder.c -o encoder -lm
decoder:
		gcc -I../common/ ../common/auxiliar.c decoder.c -o decoder -lm