about summary refs log tree commit diff
path: root/examples/custom_mutators/Makefile
blob: 463cefb18f87cef4dddc66589c205a89f6d54c9d (plain) (blame)
1
2
3
4
5
6
7
all: libexamplemutator.so

libexamplemutator.so:
	$(CC) $(CFLAGS) -fPIC -shared -g -I ../../include example.c -o libexamplemutator.so

clean:
	rm -rf libexamplemutator.so