CFLAGS = $(INCDIRS) \ -g \ -Wall -Wconversion -Wstrict-prototypes\ -Wformat -Wmissing-prototypes -Wshadow\ -Wpointer-arith -Wcast-qual -Wwrite-strings CC = gcc dec_to_bin: $(CC) $(CFLAGS) dec_to_bin.c -o dec_to_bin demo: demo.c Makefile $(CC) $(CFLAGS) demo.c -o demo readstrings: readstrings.c Makefile $(CC) $(CFLAGS) readstrings.c -o readstrings textanimate: textanimate.c Makefile $(CC) $(CFLAGS) textanimate.c -o textanimate write_probs: write_probs.c Makefile $(CC) $(CFLAGS) write_probs.c -o write_probs write_probs0: write_probs0.c Makefile $(CC) $(CFLAGS) write_probs0.c -o write_probs0 strlen1: strlen1.c Makefile $(CC) $(CFLAGS) strlen1.c -o strlen1