# © 2020 Aaron Taylor # See LICENSE.txt file for copyright and license details. PREFIX = $(HOME) BINPREFIX = $(PREFIX)/bin CC = cc CC_FLAGS = -std=c99 -Wall all: bin2load bin2load: @$(CC) $(CC_FLAGS) -o $@ bin2load.c install: bin2load @mkdir -p $(BINPREFIX) @cp ./bin2load $(BINPREFIX)/bin2load @chmod +x $(BINPREFIX)/bin2load uninstall: @rm $(BINPREFIX)/bin2load clean: @rm -f bin2load bin2load.core