aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vnet/scripts/Makefile
blob: 05f737edc416358e01c38de25540d82ad40dfc5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- mode: Makefile; -*-
#============================================================================

INSTALL		= install
INSTALL_PROG	= $(INSTALL) -m0755
INSTALL_DIR	= $(INSTALL) -d -m0755

SBIN_DIR        = $(DESTDIR)/usr/sbin

.PHONY: all install clean

all:

install:
	$(INSTALL_DIR) $(SBIN_DIR)
	$(INSTALL_PROG) vn $(SBIN_DIR)

clean: