From 82fa63600b9377fa590a2c97ed737fd8c85a622c Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Thu, 9 Oct 2008 19:40:11 -0500 Subject: [PATCH] fixed the makefile Added espeakup.h as a dependency in the makefile so that the sources will be compiled if it changes. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 1523a6f..f012e70 100644 --- a/Makefile +++ b/Makefile @@ -43,3 +43,13 @@ tarball: git archive --format=tar --prefix=$(TARPREFIX)/ $(TAG) > $(TARFILE) tar f $(TARFILE) --delete $(TARPREFIX)/.gitignore bzip2 $(TARFILE) + +cli.o: cli.c espeakup.h + +espeakup.o: espeakup.c espeakup.h + +queue.o: queue.c espeakup.h + +softsynth.o: softsynth.c espeakup.h + +synth.o: synth.c espeakup.h