From fd234aeb2f90757d2115cdabfc488e78d87d0f46 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Wed, 9 Jun 2021 17:31:27 +0200 Subject: Fix plugin target --- plugins/apple/Makefile | 6 ++++-- plugins/apple/apple.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'plugins/apple') diff --git a/plugins/apple/Makefile b/plugins/apple/Makefile index 8e3ccca..33c3303 100644 --- a/plugins/apple/Makefile +++ b/plugins/apple/Makefile @@ -1,2 +1,4 @@ -apple.so: apple.c ../game/game.h - cc -g -shared -fpic -o apple.so apple.c +plugins/apple/apple.so: plugins/apple/apple.c plugins/game/game.h + cc -g -shared -fpic -o plugins/apple/apple.so plugins/apple/apple.c + +PLUGINS := ${PLUGINS} plugins/apple/apple.so diff --git a/plugins/apple/apple.c b/plugins/apple/apple.c index 7c2de77..dd8a559 100644 --- a/plugins/apple/apple.c +++ b/plugins/apple/apple.c @@ -1,6 +1,6 @@ #include #include -#include "dungeon.h" +#include "../game/game.h" static struct entity apple; -- cgit v1.2.3