diff options
Diffstat (limited to 'util/tap/Makefile')
-rw-r--r-- | util/tap/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/tap/Makefile b/util/tap/Makefile index c7078158b..2618a5210 100644 --- a/util/tap/Makefile +++ b/util/tap/Makefile @@ -33,14 +33,12 @@ CXX= g++ CURDIR?= $(shell /bin/pwd) SRCDIR?= . +M5_SRCDIR?= $(SRCDIR)/../.. -BASE_SRCDIR?= $(SRCDIR)/../../base -SIM_SRCDIR?= $(SRCDIR)/../../sim +vpath % $(M5_SRCDIR)/base +vpath % $(M5_SRCDIR)/sim -vpath % $(BASE_SRCDIR) -vpath % $(SIM_SRCDIR) - -INCLDIRS= -I. -I$(BASE_SRCDIR) -I$(SIM_SRCDIR) -I- -I/usr/local/include +INCLDIRS= -I. -I$(M5_SRCDIR) -I- -I/usr/local/include CCFLAGS= -g -O0 -MMD $(INCLDIRS) default: m5tap @@ -48,6 +46,8 @@ default: m5tap m5tap: tap.o cprintf.o $(CXX) $(LFLAGS) -o $@ $^ -lpcap -L/usr/local/lib -ldnet +install: m5tap + $(SUDO) install -o root -m 555 m5tap /usr/local/bin clean: @rm -f m5tap *.o *.d *~ .#* |