#compiler name
CC = gcc

#linker flags
LINK = -lm

all:
	$(CC) waveform.c -o waveform $(LINK)
