.IGNORE:

OPT=-O

# On Digital Unix / Alpha machines, the following works well.  Use ev4
# if appropriate for your chipset.
#
#OPT=-DALPHA -O -om -non_shared -tune ev5

all: cod-circuito.c cod-input.c decod-sign.c exp-modulare.c
	gcc -O exp-modulare.c lip.o -lm -o exp-modulare
	gcc -O cod-circuito.c lip.o -lm -o cod-circuito
	gcc -O cod-input.c lip.o -lm -o cod-input
	gcc -O decod-sign.c lip.o -lm -o decod-sign

clean:
	rm -f cod-circuito cod-input decod-sign exp-modulare
