From 72b2d854dfa738b2b51d193da18bbee94e4765b5 Mon Sep 17 00:00:00 2001 From: Adrian Malacoda Date: Sat, 22 Jun 2019 15:03:03 -0500 Subject: [PATCH] generate plugin directory if it does not exist --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b34c957..bfdbf67 100755 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ all: $(CC) -c external-tools.c -fPIC `pkg-config --cflags geany` $(CC) external-tools.o -o external-tools.so -shared `pkg-config --libs geany` install: + mkdir -p $(GEANY_PLUGIN_DIR) cp external-tools.so $(GEANY_PLUGIN_DIR) clean: rm -f *.o *.so