From 52f31ed9c970b4208b2de120e292b71430f6a293 Mon Sep 17 00:00:00 2001 From: Brett Witherspoon Date: Fri, 30 Sep 2016 18:27:57 -0500 Subject: [PATCH] add IP target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 76bb63c..693c078 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,10 @@ all: test: for d in $(DIRS); do make -C $$d test; done +ip: + make -C ip + clean: for d in $(DIRS); do make -C $$d clean; done -.PHONY: all test clean +.PHONY: all test ip clean