CC =gcc -O2 LIBS =-lm SRCS =main.c fft_2D.c convert.c filter.c OBJS =$(SRCS:.c=.o) proc: $(OBJS) $(CC) -o proc $(OBJS) $(LIBS) clean : rm *.o