aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4f6a822..ded495b 100644
--- a/Makefile
+++ b/Makefile
@@ -6,9 +6,7 @@ LDFLAGS=$(shell pkg-config --libs SDL2_mixer)
SRC=$(wildcard src/*.c)
OBJ=$(SRC:.c=.o)
-LIBS=$(wildcard $(LIB)/*.c)
-
-BIN=audio
+BIN=bin
$(BIN): $(OBJ)
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)