ap

An audio player suited to my tastes
Log | Files | Refs | README | LICENSE

commit f76829ecbe17f4e1f094d1fd51ac107d33d9c22f
parent b82bfeeba908ab749339f5e56ad8b1a5a5174dfd
Author: Jacob R. Edwards <n/a>
Date:   Fri, 26 Aug 2022 08:30:01 -0700

Fix include paths in Makefiles

Diffstat:
Mapc/Makefile | 2+-
Maps/Makefile | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apc/Makefile b/apc/Makefile @@ -1,6 +1,6 @@ name = apc src = apc.c ldlibs = ../lib/ap/libap.a -cflags = -I../inc +cflags = -I../lib .include "../mk/exe.mk" diff --git a/aps/Makefile b/aps/Makefile @@ -3,7 +3,7 @@ src = aps.c arg.c asplit.c bug.c command.c find.c log.c main.c match.c \ player.c queue.c response.c split.c inc = ${src:.c=.h} util.h ldlibs = ../lib/ap/libap.a -cflags = -I../inc +cflags = -I../lib .include "../mk/exe.mk"