Added misc file 'custom_bitstream.c' that creates paper tape with repeating memory...
[pdp11-bin2load] / Makefile
# © 2020 Aaron Taylor <ataylor at subgeniuskitty dot com>
# See LICENSE.txt file for copyright and license details.
PREFIX = $(HOME)
BINPREFIX = $(PREFIX)/bin
CC = cc
CC_FLAGS = -std=c99
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