CC = gcc CFLAGS = -g -Wall -Wextra -ansi -w all : fir fir: bcdadd_d.o main.c $(CC) $(CFLAGS) main.c bcdadd_d.o -o $@ clean: rm -f *.o bcdadd_d