Merge pull request #2 from sanchez2210/master

This commit is contained in:
Nikola Marić
2021-04-06 20:15:47 +02:00
committed by GitHub
4 changed files with 65 additions and 60 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.ccls-cache
*.swp
interception-vimproved

View File

@@ -15,10 +15,14 @@ $(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.
install -D --strip -T $(INSTALL_FILE) $(TARGET)
install -D --strip -T $(TARGET) $(INSTALL_FILE)
.PHONY: test
test:

Binary file not shown.