From 61349eeac508e5c0ee4dab6ff9258c160b63e269 Mon Sep 17 00:00:00 2001 From: Luis Felipe Sanchez Date: Thu, 18 Feb 2021 14:51:22 -0500 Subject: [PATCH] Add build cmd --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 708c031..08d9fe5 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,10 @@ $(TARGET): $(TARGET).cpp clean: rm -f $(TARGET) $(TARGET).o +.PHONY: build +build: + g++ -o interception-vimproved interception-vimproved.cpp + .PHONY: install install: # If you have run `make test` then do not forget to run `make clean` after. Otherwise you may install with debug logs on.