mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
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>
18 lines
262 B
Makefile
18 lines
262 B
Makefile
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)
|