mirror of
https://github.com/Michaelangel007/apple2_mockingboard.git
synced 2025-01-13 19:29:56 +00:00
14 lines
174 B
Makefile
14 lines
174 B
Makefile
all: test_mock freq
|
|
|
|
.PHONY: test_mock
|
|
|
|
C_FLAGS=-Wall -Wextra
|
|
|
|
test_mock:
|
|
src2dsk test_mock.s
|
|
applewin.sh -d1 test_mock.dsk
|
|
|
|
freq: freq.c
|
|
g++ $(C_FLAGS) $< -o $@
|
|
|