From d39662831035b0f61aa49664105a4b221f6dcb35 Mon Sep 17 00:00:00 2001 From: Tijmen van Nesselrooij Date: Sat, 30 May 2020 12:22:22 +0200 Subject: [PATCH] Rename binary to wassembler --- bin/.gitignore | 2 +- makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/.gitignore b/bin/.gitignore index 0afae4a..7ef33e6 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -1 +1 @@ -wassembly \ No newline at end of file +wassembler \ No newline at end of file diff --git a/makefile b/makefile index 47b4739..40d93ba 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ CPPS = $(shell find src/ -name '*.cpp') OBJS = $(patsubst src/%.cpp, build/%.o, ${CPPS}) DEPS = $(patsubst src/%.cpp, build/%.d, ${CPPS}) -BINARY = bin/wassembly +BINARY = bin/wassembler .PHONY: all check clean