summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b7bd5e7..f22a59a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-CFLAGS = -I .
-LDLIBS = -lcurses -lreadline
+CFLAGS = -I . -g
+LDLIBS = -lcurses -lreadline -lportaudio -lsndfile
.PHONY: all main
@@ -11,5 +11,5 @@ clean:
%.o: %.c %.h
$(CC) -c -o $@ $< $(CFLAGS) $(LDLIBS)
-main: main.c util.o history.o link.o
+main: main.c util.o history.o link.o player.o tag.o track.o
$(CC) -o $@ $^ $(CFLAGS) $(LDLIBS)