COPT = -Wall -g -O0 -std=c11 all: minicli t context.o: context.c Makefile pokesound.h gcc $(COPT) -c $< faders.o: faders.c Makefile pokesound.h gcc $(COPT) -c $< soundbuff.o: soundbuff.c Makefile pokesound.h gcc $(COPT) -c $< pokeurs.o: pokeurs.c Makefile pokesound.h gcc $(COPT) -c $< cli.o: cli.c Makefile pokesound.h cli.h cli.h gcc $(COPT) -c $< utils.o: utils.c Makefile pokesound.h cli.h gcc $(COPT) -c $< symbols.o: symbols.c Makefile pokesound.h gcc $(COPT) -c $< OBJS = context.o soundbuff.o faders.o pokeurs.o cli.o \ utils.o symbols.o minicli: minicli.c Makefile cli.h pokesound.h $(OBJS) gcc $(COPT) $< $(OBJS) -lsndfile -o $@ t: t.c Makefile pokesound.h $(OBJS) gcc $(COPT) $< $(OBJS) -lsndfile -o $@