Displaying 1 result from an estimated 1 matches for "xc_console".
Did you mean:
mic_console
2005 Aug 02
4
Re: [Xen-changelog] Fixes.
...s/consoled/Makefile
> --- a/tools/consoled/Makefile Tue Aug 2 14:51:06 2005
> +++ b/tools/consoled/Makefile Tue Aug 2 15:42:06 2005
> @@ -24,14 +24,14 @@
>
> HDRS = $(wildcard *.h)
> OBJS = $(patsubst %.c,%.o,$(SRCS))
> -BIN = consoled
> +BIN = consoled xc_console
>
> -all: $(BIN) xc_console
> +all: $(BIN)
>
> clean:
> - $(RM) *.a *.so *.o *.rpm $(BIN) xc_console
> + $(RM) *.a *.so *.o *.rpm $(BIN)
>
> -$(BIN): $(OBJS)
> +consoled: $(OBJS)
> $(CC) $(CFLAGS) $^ -o $@ -L$(XEN_LIBXC) -L$(XEN_XENSTORE) \
> -l...