Files
poky/scripts/tunctl-src/Makefile
Jeff Dike 4df9f11171 poky-qemu-internal: Support NFS boots better
The image specification can now be in the form nfs-server:directory.
This makes it possible to nfs-boot from servers other than the host.
poky-qemu-internal will properly construct the kernel command line
given such a specification.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
2010-08-20 16:20:10 +01:00

262 B

OBJS = tunctl.o BIN = tunctl CFLAGS ?= -g -Wall

BIN_DIR ?= /usr/bin

all : $(BIN)

$(BIN) : $(OBJS) $(CC) $(CFLAGS) -o $(BIN) $(OBJS)

clean : rm -f $(BIN) $(OBJS) *~

install : $(BIN) install -d $(DESTDIR)$(BIN_DIR) install -s $(BIN) $(DESTDIR)$(BIN_DIR)