From 2ae4b0ff77a2b2be2c485ac3ba6c1ef3facb874c Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Mon, 26 Mar 2018 13:33:49 +0200 Subject: Basic audio system + firing sound. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7719800..00c243d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC ?= gcc CFLAGS += -g3 -O0 -Wall -std=gnu++14 CPPFLAGS += -MMD -LDFLAGS += -lstdc++ -lm -lsfml-system -lsfml-window -lsfml-graphics +LDFLAGS += -lstdc++ -lm -lsfml-system -lsfml-window -lsfml-graphics -lsfml-audio PP_BOLD := $(shell tput bold) PP_RESET := $(shell tput sgr0) @@ -17,6 +17,7 @@ SRC := src/game/assets.cpp \ src/game/text.cpp \ src/game/units.cpp \ src/game/worldgen.cpp \ + src/audio.cpp \ src/main.cpp \ src/path_finder.cpp \ src/procgen.cpp \ -- cgit