aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 23:32:58 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-07-06 23:32:58 +1200
commit5448101bdf39af549bf8f944a7b50ba891311455 (patch)
tree6304c98f9b5c4962be3d19cb1600d58a03acbb55 /Makefile
parentd358e7787bb539ec48d31c3f3feda0851947e332 (diff)
downloadcue-bin-split-5448101bdf39af549bf8f944a7b50ba891311455.tar.xz
Fixed track end overrun, tidied run-to-EOF (last track) operation, removed pointless typecasts
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 62611f9..70a9493 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ all: cue-bin-split
cue-bin-split: $(OBJECTS)
$(CC) -o $(EXEC_NAME) $^ $(LDFLAGS)
-%.o: %.c
+%.o: %.c %.h
$(CC) -c -o $@ $< $(CFLAGS)