revert compile option of $(EXTRA_CFLAGS) and compiled objects of $(EXTRA_OBJS)

in executer/user/Makefile.in, which builds mcexec, because DCFA in
comm-ib repository passes these variables to combine additional binaries to
create custom mcexec
This commit is contained in:
Masamichi Takagi m-takagi@ab.jp.nec.com
2013-05-14 10:20:09 +09:00
parent 1d4babcd32
commit d3764f0417

View File

@ -6,7 +6,7 @@ TARGET=mcexec
all: $(TARGET)
mcexec: mcexec.c
$(CC) $(CFLAGS) -pthread -o $@ $^
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -pthread -o $@ $^ $(EXTRA_OBJS)
clean:
$(RM) $(TARGET) *.o