about summary refs log tree commit diff
path: root/custom_mutators/symqemu/Makefile
blob: 958aec197a559e3e6493073bcbd1a1dc0d7a7e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
ifdef DEBUG
  CFLAGS += -DDEBUG
endif

all: symqemu-mutator.so

CFLAGS	+= -O3 -funroll-loops

symqemu-mutator.so: symqemu.c
	$(CC) -g $(CFLAGS) $(CPPFLAGS) -g -I../../include -shared -fPIC -o symqemu-mutator.so symqemu.c

clean:
	rm -f symqemu-mutator.so *.o *~ core