aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/lib/adafruit_floppy/Makefile
blob: 3b6b2b6935c380379d689ed10c75666e2977b55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2022 Jeff Epler for Adafruit Industries
#
# SPDX-License-Identifier: MIT

mfm: stand/main.c mfm_impl.h
	gcc -iquote . -o $@ $<

.PHONY: test
test: mfm
	./mfm < flux.txt

.PHONY: clean
clean:
	rm -f mfm