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:
parent
1d4babcd32
commit
d3764f0417
@ -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
|
||||
|
||||
Reference in New Issue
Block a user