14 lines
174 B
Makefile
Raw Normal View History

2017-04-16 00:23:24 -07:00
all: test_mock freq
2017-04-15 10:45:13 -07:00
.PHONY: test_mock
2017-04-16 00:23:24 -07:00
C_FLAGS=-Wall -Wextra
2017-04-15 10:45:13 -07:00
test_mock:
src2dsk test_mock.s
applewin.sh -d1 test_mock.dsk
2017-04-16 00:23:24 -07:00
freq: freq.c
g++ $(C_FLAGS) $< -o $@