Initial commit.

This commit is contained in:
Adrian Malacoda
2014-08-16 04:35:41 -05:00
commit 5a55e9f74d
10 changed files with 1430 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
CC=gcc
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:
cp external-tools.so ~/.config/geany/plugins/
clean:
rm -f *.o *.so