Move plugins directory to root path
[MonkeyD.git] / plugins / cheetah / Makefile
blobb3756808ee5cd48f50b85f9653fcc81d95ebf707
1 CC = gcc
2 INCDIR = ../../src/include
4 all:
5 gcc -I$(INCDIR) -fPIC -g -c -Wall cheetah.c
6 gcc -shared -Wl -o monkey-cheetah.so cheetah.o -lc
7 clean:
8 rm -rf *.o
9 rm -rf *.*so*