From d3764f04170cb3aee2c60cf9df43d3d04915ddc3 Mon Sep 17 00:00:00 2001 From: "Masamichi Takagi m-takagi@ab.jp.nec.com" Date: Tue, 14 May 2013 10:20:09 +0900 Subject: [PATCH] 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 --- executer/user/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executer/user/Makefile.in b/executer/user/Makefile.in index 72d3d447..3f3213a3 100644 --- a/executer/user/Makefile.in +++ b/executer/user/Makefile.in @@ -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